廣告

2015年8月21日 星期五

[jquery] prevent a parent's onclick event from firing when a child anchor is clicked


.html





.js
$("#clickable a").click(function(e) {
   //do something
   e.stopPropagation();
})


$("#clickable").click(function(e) {
   //do something
   alert('clickable');
})
here is link that you test
http://jsfiddle.net/grp10d10/1/

沒有留言:

張貼留言