Hi all, I'm trying to implement a bookmarklet where the user will click one <img/>
and will be redirected to another page where he will annotate the image.
if the image is inserted within a HTML anchor:
<a href="http://anywhere.org"><img src=""http://anywhere.org/image.png"/></a>,
can I prevent the anchor to be activated? I tried
event.stopPropagation();
and/or
event.preventDefault();
but it didn't work
thanks.