[jQuery] Image gallery onload issue

[jQuery] Image gallery onload issue


Hi folks
I'm sure someone must know the answer to this;
When making an image gallery, and you want to preload the next image
before swapping it in, IE will not load the image if it has already
cached it. I have got around this before by using a random number;
var newSrc = ''+newSrc+'?ran='+randomnumber+'';
var nextImg = new Image();
nextImg.src = newSrc;
But I have never been happy with this. Does anyone know a better way
to work around this cache problem?
cheers,
steve