I wish to given my validation with min and max number and then giving a correct alert message. How to set min and max into the script below?
function isvalidated(){
//CURN
if(!$.isNumeric($('#txcurn').val())){
alert("Please enter numbers");
return false;
}
}