Skip to content

Instantly share code, notes, and snippets.

@rafaelmaeuer
Created December 13, 2016 09:00
Show Gist options
  • Save rafaelmaeuer/da8978845faa249218991829fcfec7cc to your computer and use it in GitHub Desktop.
Save rafaelmaeuer/da8978845faa249218991829fcfec7cc to your computer and use it in GitHub Desktop.
var hideKeyboard = function() {
document.activeElement.blur();
var inputs = document.querySelectorAll('input');
for(var i=0; i < inputs.length; i++) {
inputs[i].blur();
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment