dejanmarkovic
3/31/2014 - 7:17 PM

Kill the bubbling on the click event (use stopPropagation)

Kill the bubbling on the click event (use stopPropagation)

$( "p" ).click(function( event ) {
event.stopPropagation();
// Do something
});