Skip to content

Instantly share code, notes, and snippets.

@solid-pixel
Created June 5, 2018 10:01
Show Gist options
  • Save solid-pixel/64c6d4b9dfb6f4e17e2045f9c1fa76e3 to your computer and use it in GitHub Desktop.
Save solid-pixel/64c6d4b9dfb6f4e17e2045f9c1fa76e3 to your computer and use it in GitHub Desktop.
jQuery ajax .load() - callback waits for images to load
$('#newsletter').load('content.html', function() {
var images = $('#newsletter img');
var nimages = images.length;
images.load(function() {
nimages--;
if(nimages == 0) {
// images loaded. now execute Callback:
alert('all images loaded!');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment