I\'m trying to remove the loaded image from a element, but clearing or removing the src doesn\'t do it. What to do?
HTML:
Remove the node using
$("img").remove()
or simply hide the image using
$("img").hide()