- Abrir Herramientas de Desarrollador
- Entrar a Consola
- Pegar el código
- Darle Enter
Last active
October 23, 2024 00:44
-
-
Save angelmartz/db920137ca74fd15ef5e7f8b02af78c1 to your computer and use it in GitHub Desktop.
Permitir Pegar en Páginas
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
let pegar = function(e){ | |
e.stopImmediatePropagation(); | |
return true; | |
}; | |
document.addEventListener('paste', pegar, true); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment