Skip to content

Instantly share code, notes, and snippets.

@shavidzet
Created May 11, 2016 13:15
Show Gist options
  • Save shavidzet/4adf8cc302672e7c6fcd4d195871cfc8 to your computer and use it in GitHub Desktop.
Save shavidzet/4adf8cc302672e7c6fcd4d195871cfc8 to your computer and use it in GitHub Desktop.
On focus without pop up keyboard on mobile

On focus without pop up keyboard on mobile

<!DOCTYPE html>
<html>
<head>
<title>Title</title>
<script src="https://code.jquery.com/jquery-2.2.3.min.js"></script>
</head>
<body>
<input type="text" id="input">
<script>
var i = $('#input');
i.focus();
i.focus(function() {
i.blur();
});
i.blur(function() {
i.focus();
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment