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
e.stopPropagation()
Try this. It requires jQuery.
$('*').on('click', function(e){ e.stopPropagation(); });