Skip to content

Instantly share code, notes, and snippets.

View redamoon's full-sized avatar
🙄

Yuki Sekiguchi redamoon

🙄
View GitHub Profile
@tirams
tirams / preloadImages
Created February 15, 2012 07:04
jQuery plugin to preload images
// Usage: $(['img1.jpg','img2.jpg']).preloadImages(function(){ ... });
// Callback function gets called after all images are preloaded
$.fn.preloadImages = function (callback)
{
// Helper function, used below.
// Usage: ['img1.jpg','img2.jpg'].remove('img1.jpg');
var checklist = this.toArray();
var removeImg = function (element)
{