Skip to content

Instantly share code, notes, and snippets.

@fredryk
Created June 27, 2013 20:18
Show Gist options
  • Save fredryk/5880012 to your computer and use it in GitHub Desktop.
Save fredryk/5880012 to your computer and use it in GitHub Desktop.
Disallow special characters from input fields.
$('#note').bind('keypress', function (event) {
var regex = new RegExp("^[a-zA-Z0-9]+$");
var key = String.fromCharCode(!event.charCode ? event.which : event.charCode);
if (!regex.test(key)) {
event.preventDefault();
return false;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment