Skip to content

Instantly share code, notes, and snippets.

@luiscastro193
Last active March 23, 2019 17:17
Show Gist options
  • Save luiscastro193/0d920a1219d9900fecc33e7d37d4400c to your computer and use it in GitHub Desktop.
Save luiscastro193/0d920a1219d9900fecc33e7d37d4400c to your computer and use it in GitHub Desktop.
Select input (JavaScript)
"use strict";
function selectInput(input) {
setTimeout(function() {
try {
input.setSelectionRange(0, input.value.length);
}
catch(e) {
input.select();
}
}, 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment