Skip to content

Instantly share code, notes, and snippets.

@maecha
Created May 17, 2017 07:00
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 maecha/fc1bb414da1b0aa6d32a59b2c3e45616 to your computer and use it in GitHub Desktop.
Save maecha/fc1bb414da1b0aa6d32a59b2c3e45616 to your computer and use it in GitHub Desktop.
インプットをクリックでテキストを選択状態にする
$(document).ready(function(){
$('.jsInputOnClickFocus').focus(function(){
$(this).select();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment