Skip to content

Instantly share code, notes, and snippets.

@ajpiano
Forked from anonymous/gist:509008
Created August 5, 2010 00:40
Show Gist options
  • Save ajpiano/509039 to your computer and use it in GitHub Desktop.
Save ajpiano/509039 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