Last active
January 25, 2024 14:21
-
-
Save viclafouch/c6445aa2f0cf23f990587ad3061fd380 to your computer and use it in GitHub Desktop.
Edit your website in live by using `document.designMode` and killing links
This file contains 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', event => event.preventDefault(), false) | |
// Disable click eventlisteners | |
window.addEventListener("click", event => event.stopPropagation(), true) | |
// Enable design mode | |
document.designMode = "on" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment