Create a repository for this ```javascript (function() { var handler = function(event) { event.stopImmediatePropagation(); event.preventDefault(); }; for (var n in window) { if (/^on/.test(n)) { window.addEventListener(n.substr(2), handler, true); } } })(); ```