Was wanting to know how to check using jquery if a input contains a number higher then 99
This would do it
var value = $("input selector").eq(0).val(); if(isNaN(value)){ //do stuff } else{ var num = value - 0; if(num>99) { //value is greater than 99 } }