I do have a gif image load bar animation I do want it to reload when click Reload Image so that the animation will repeat.
//My HTML
<img src="http://i54.tinypic.com/2qdwtp0.gif" id="load-bar"/>
<a href="#" id="reloadImg">Reload Image</a>
//My js code
function imgRelaoder() {
//some stuff to reload image with id #load-bar
}
$(function() {
imgRelaoder();
$("#reloadImg").click(imgRelaoder);
});
http://jsfiddle.net/27NV3/