I am trying to load a image from the server (same name but always a new image) into the html page - tag: #webCamStageImage. So far I can load the image but the browser doesn't show me the new image - I guess it's a caching problem - because when I turn on "disable WebCore Cache" in Safari it works.
Heres my code:
setInterval(function()
{
$("#webCamStageImage").attr({'src': "http://picture.jpg"});
}, 5000);
How can I change/ddelte/refresh the old image?
chris