How would I go about updating an image that gets updated on a server every couple of seconds with out the user having to hit the refresh button, my first guess was ajax but
every X seconds send Ajax to server. if link of image from response == previous, no update, if link new: $('img.class').attr('src','link');
$('img.class').attr('src','link');