I am trying to make image clickable. Polymer code looks like:
<div on-click={{clickHandler}}>
<img src="xyz.jpg" />
</div>
in the handler i always get e.target as img, i tried doing e.stopPropogation it still does not detect click of div.
Any work around this one ??