Skip to content

Instantly share code, notes, and snippets.

@wutupake
Created November 23, 2011 17:01
Show Gist options
  • Save wutupake/1389217 to your computer and use it in GitHub Desktop.
Save wutupake/1389217 to your computer and use it in GitHub Desktop.
JS: input form - seleziono il contenuto al load della pagina (fix per CHROME)
$("input[name='answer']").focus(function(){
this.select();
});
// fix per CHROME
$("input[name='answer']").mouseup(function(e){
e.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment