Skip to content

Instantly share code, notes, and snippets.

@bepatrickdavid
Created March 2, 2016 09:57
Show Gist options
  • Save bepatrickdavid/9ba398d27ca7c9b7ae84 to your computer and use it in GitHub Desktop.
Save bepatrickdavid/9ba398d27ca7c9b7ae84 to your computer and use it in GitHub Desktop.
jQuery: nascondere tastiera ios hide keyboard
//se si preme enter
$(document).on("keyup", "input", function(event) {
// If enter is pressed then hide keyboard.
if(event.keyCode == 13) {
$("input").blur();
}
});
//nasconde
$("input").blur();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment