Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 2, 2019 22:05
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 parzibyte/d3692d247fa26e590e81552076ae4f99 to your computer and use it in GitHub Desktop.
Save parzibyte/d3692d247fa26e590e81552076ae4f99 to your computer and use it in GitHub Desktop.
const $btnEnfocar = document.querySelector("#btnEnfocar"),
$nombre = document.querySelector("#nombre");
// En el click, enfocar
$btnEnfocar.addEventListener("click", () => {
$nombre.focus();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment