Skip to content

Instantly share code, notes, and snippets.

@craigpalermo
Created June 6, 2015 18:37
Show Gist options
  • Save craigpalermo/e096fd206980379495da to your computer and use it in GitHub Desktop.
Save craigpalermo/e096fd206980379495da to your computer and use it in GitHub Desktop.
Select text on input focus
/*
Credit to CSS-Tricks.com ~ https://css-tricks.com/copy-paste-the-web/
*/
$('#ta').on("focus", function(e) {
e.target.select();
$(e.target).one('mouseup', function(e) {
e.preventDefault();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment