I am calling e.stopPropagation()
on almost every event that I have for my current application. Is there any way to just stop the propagation for every event wit
You could bind all events (remove the ones you don't need):
$('*').bind('blur change click dblclick error focus focusin focusout hover keydown keypress keyup load mousedown mouseenter mouseleave mousemove mouseout mouseover mouseup resize scroll select submit', function(event){
event.stopPropagation();
});
Take a look at possible events at jQuery Docs