image-loaded

Call a callback when an image has loaded - adapted from desandro/imagesloaded

Usage no npm install needed!

<script type="module">
  import imageLoaded from 'https://cdn.skypack.dev/image-loaded';
</script>

README

image-loaded

browser support

Call a callback when an image has loaded - adapted from desandro/imagesloaded, minus the jQuery.

Installation

Using npm and browserify:

npm install image-loaded

Usage

require('image-loaded')(image, callback)

var loaded = require('image-loaded')
var image = document.getElementById('hidden-image')

loaded(image, function(err, alreadyLoaded) {
  // image is loaded!
})

If the image was already loaded beforehand, the callback will be called instantly with the second argument set to true. Otherwise this will be false.