Skip to content

Instantly share code, notes, and snippets.

@YerlinMatu
Created June 26, 2017 04:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save YerlinMatu/33a65a3d80edc18426562d20e2d3b316 to your computer and use it in GitHub Desktop.
Save YerlinMatu/33a65a3d80edc18426562d20e2d3b316 to your computer and use it in GitHub Desktop.
Evitar repetir teclas
<h1>Escribir una sola tecla</h1>
<h3>Detector de tecla presionada</h3>
<input type="text" placeholder="Escribe una sola letra" id="texto"/>
let texto = document.getElementById('texto');
texto.addEventListener('keydown', (tecla)=>{
if(tecla.repeat){
tecla.preventDefault();
}
})
@YerlinMatu
Copy link
Author

Evitar repetir letras al dejar pulsado una tecla.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment