showing results for - "click on child prevent click on parent"
Emily
22 Jul 2017
1// Use `.stopPropagation();`, even if you're not using JQuery
2$("#clickable a").click(function(e) {
3   e.stopPropagation();
4});