I know one can load image dynamically using
$("#id").attr("src","path of the image"),
but to onload the certain image on certain event,
$("id").attr("src","")
doesn't work.
What's the correct way to unload the image runtime using jquery??
I cannot change the display or the visibility property of the image, I need to load an unload it.