Skip to content

Instantly share code, notes, and snippets.

@cemerson
Created October 17, 2012 19:02
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cemerson/3907428 to your computer and use it in GitHub Desktop.
Save cemerson/3907428 to your computer and use it in GitHub Desktop.
JavaScript: Hide iOS/Soft Keyboard
function hideKeyboard{
document.activeElement.blur();
$("input").blur();
};
/* SOURCE
// URL: http://uihacker.blogspot.com/2011/10/javascript-hide-ios-soft-keyboard.html
var hideKeyboard = function() {
document.activeElement.blur();
$("input").blur();
};
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment