function display_hist()
{
document.getElementById("display_area").innerHTML='';
document.getElementById("display_area").innerHTML='<img id="hist" src="hist.jpg" width=480 height=480>';
}
I have an ajax function that tries to reload an image with the same URL when called by some other code. However, I keep getting the cached image. How can I force the browser to reload the image? Or how to turn off cache functions in firefox COMPLETELY(who thinks he is so smart by caching the content, I have enough! I DON'T WANT ANY CACHE!!) , that is fine as well.