Created
September 30, 2019 08:24
-
-
Save NeilJS/32ac664f846bdea9aac25a428fe3727a to your computer and use it in GitHub Desktop.
Chrome snippet: designMode="on" + kill all links
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Disable anchor links | |
window.addEventListener("click", function (event) { | |
event.preventDefault(); | |
}); | |
// Disable click eventlisteners | |
window.addEventListener("click", function (event) { | |
event.stopPropagation(); | |
}, true); | |
// design mode on | |
document.designMode = "on"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment