On my page I have a lot of various elements which respond to click events. There are times when I need to block all clicks based on some global flag. Is there a way I can ma
Using Inject Javascript :
view.loadUrl( "javascript:(function() {" + "document.addEventListener('click', function(e)" + "{" + "e.stopPropagation();" + "}" + ", true);" + "})()" );