I am developing app for android. but my img click function is not firing. Don't know why. The same works for div, but not for img. Any ideas why?
This is html code:
<img src="talk.png" id="talk" class="thumb3"/>
This is jQuery:
$("#talk").on('vclick', function () {
alert("ItWorks!");
});
This is CSS:
.thumb3 {
width:40px;
height: 40px;
margin-top:5px;
z-index:999;
}
EDIT
tried with click and still not working.