I don't think so. However, you can force the browser to make a fresh request by appending a unique query string. The best way to do that in javascript is to use the current date/time stamp. For example:
Code:
var im = new Image(), imsrc = 'http//www.somedomain.com/images/some.jpg';
im.onload = function(){
// do whatever you want/need here for the image's onload event
}
im.src = imsrc + '?bustcache=' + new Date().getTime();
This will force the browser to fetch the image anew from the server because new Date().getTime(); will always be a unique number, a number that is larger than the last and all previous times.
Bookmarks