$.fn.preload = function() {
this.each(function(){
$('<img/>')[0].src = this;
});
}
$(['img1.jpg','img2.jpg','img3.jpg']).preload(); |
$.fn.preload = function() {
this.each(function(){
$('<img/>')[0].src = this;
});
}
$(['img1.jpg','img2.jpg','img3.jpg']).preload();
For simple JavaScript use:
function preload(arrayOfImages) {
$(arrayOfImages).each(function(){
$('<img/>')[0].src = this;
});
}
preload([
'img/1.jpg',
'img/2.png',
'img/3.gif'
]); |
function preload(arrayOfImages) {
$(arrayOfImages).each(function(){
$('<img/>')[0].src = this;
});
}
preload([
'img/1.jpg',
'img/2.png',
'img/3.gif'
]);