I was able to successfully preload the image gallery before the page loaded, but I was wondering how I can do the same for the user cursor.cur files, since it does not work using the image method below, because it cannot understand the .cur extension?
// Image Preloader var pictures [ "a.jpg", .. "z.jpg" ]; for (var i=0;i < pictures.length; i++){ var img = new Image() img.src = pictures[i]; img.onload = function(){ updateProgress(); } }
str11 source share