I have a small preload script
var speed = 55; //speed in ms
$(function(){
$("#projects img").hide();
timer = setInterval(function () {
$notLoaded = $("#projects img").not(".loaded");
$notLoaded.eq(Math.floor(Math.random() * $notLoaded.length)).fadeIn().addClass("loaded");
if ($notLoaded.length == 0) {
clearInterval(timer);
}
}, speed);
});
My problem is, the script keeps firing every time that particular page is requested. Is there some way that, once the images are cached, the script does not run and just shows the images? The images are hidden with CSS display:none then faded in at random. I'm getting in over my head with jQuery, I am only beginning to learn it. I read something about complete but have no idea how to implement that, or even if it's correct. Any suggestions?