Skip to content

Instantly share code, notes, and snippets.

Created August 5, 2010 00:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/509008 to your computer and use it in GitHub Desktop.
Save anonymous/509008 to your computer and use it in GitHub Desktop.
$('.inp input').keyup(function(e) {
up = $(this).val();
if ((+up) > (+max)) { // +val converts string to number
alert('too high '+e.which);
return false;
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment