I have an animated GIF that plays once (doesn't loop). I would like it to animate when clicked. I tried something like this:
$('#plus').click(function(){ $('#plus').attr('src',''); $('#plus').attr('src','img/plus.gif') });
With the hope that quickly resetting the src
would trigger the animation, but no luck. Anyone know what would do it?