Skip to content

Instantly share code, notes, and snippets.

@matdombrock
Created December 10, 2014 01:49
Show Gist options
  • Save matdombrock/fc3029c968c5dad5975c to your computer and use it in GitHub Desktop.
Save matdombrock/fc3029c968c5dad5975c to your computer and use it in GitHub Desktop.
Preload images with jQuery
//USES JQUERY
var slides = [
"img/Lighthouse.jpg",
"img/Desert.jpg",
"img/Jellyfish.jpg"
];
$(slides).each(function () {
$('<img />').attr('src',this).appendTo('body').css('display','none');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment