I have an array of numerical values and, using jQuery, would like to preload images based on that array. For example, if the array is ["1", "5", "8", "23"], I'd like to preload the following images:
/images/1.jpg
/images/5.jpg
/images/8.jpg
/images/23.jpg
What's the best way to accomplish this?