function stopIt(e) { if (!e) e = window.event; //IE9 & Other Browsers if (e.stopPropagation) { e.stopPropagation(); } //IE8 and Lower else { e.cancelBubble = true; } }
March 20, 2016
function stopIt(e) { if (!e) e = window.event; //IE9 & Other Browsers if (e.stopPropagation) { e.stopPropagation(); } //IE8 and Lower else { e.cancelBubble = true; } }
My name is Tony Spiro. I'm the co-founder of Cosmic JS. I enjoy building tools that help teams build awesome products. Follow me on Twitter.