I have a table with click events bound to its rows (). There are elements inside those rows with their own click events assigne
-
2020-12-10 03:53
I would use bind instead of live for both and and the following code
$("a").bind("click", function(e){ alert("clicked!"); e.stopPropagation() });
for .
All 's will work as expected and event handler code won't execute after clicking .
Works in all modern browsers.