Skip to content

Instantly share code, notes, and snippets.

@johnboxall
Created September 21, 2010 20:53
Show Gist options
  • Save johnboxall/590517 to your computer and use it in GitHub Desktop.
Save johnboxall/590517 to your computer and use it in GitHub Desktop.
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
</head>
<body>
<form action="" method="GET">
<input type="text" />
<input type="submit" />
</form>
<script>
// Prevent "GO" button from submitting.
addEventListener('keypress', function(e) {
e.target.blur();
e.preventDefault();
e.stopPropagation();
return false;
}, true);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment