Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to preload all images in a directory called img,and that directory also contains sub directory called ui_images.

I know how to preload specific images by putting their names in an array and doing the preloading work, but i want to know how to tell the script to search dynamically for all images in that directory img and img/ui_images?

Here's my code :

var preloadImg = function(imgArr){
    $.each(imgArr, function(index,value){
        $("<img/>")[0].src = value;
    }); 
}

var arrimg = ['img/check.png','img/add_sub.png'];
preloadImg(arrimg);
share|improve this question
There is no way to do this. At least, no good way. Http offers nothing like directory listing or anything like that. So the client would have to basically try every possible file name. What you can do is have your server code investigate the directory and dump all the files into a JS array that jquery consumes. – Matt Greer Sep 9 '12 at 20:47

1 Answer

up vote 3 down vote accepted

There is no generally available facility for doing a directory listing in http. The options I can think of are:

  1. Name your images in a predictable fashion like (img001, img002, etc...) and then you can load images until you get an error.

  2. Name your images in a predictable fashion like (img001, img002, etc...) and then code in one numeric limit value into your web page for how many there are.

  3. Create an ajax call (on both client and server) that will give you a list of image names to preload.

  4. Have your server embed an array of image names into the page so you know what to preload.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.