Was wanting to know how to check using jquery if a input contains a number higher then 99
I guess typically with jQuery you would have to have the name of the form
number: Comment:
you would select the form and its input.
var myInt = parseInt(jQuery("#form-number-url").attr("value"));
then you can compare it with any other integer.