jquery cross browser solution
Posted
by cf_PhillipSenn
on Stack Overflow
See other posts from Stack Overflow
or by cf_PhillipSenn
Published on 2010-05-01T00:59:07Z
Indexed on
2010/05/01
1:17 UTC
Read the original article
Hit count: 227
jQuery
What is the jQuery equivalent to the following:
function stopEvent(evt) {
if (window.event) window.event.cancelBubble = true;
else evt.stopPropagation();
}
© Stack Overflow or respective owner