Was wanting to know how to check using jquery if a input contains a number higher then 99
Use this:
html:
jquery:
var nMyInput = $("#myInput").val(); if (typeof nMyInput != "undefined"){ if(!isNaN(nMyInput)){ if (parseInt(nMyInput) > 99) { /* do your stuff */ } } }