Text to accept only numbers

function  FnNumberCheck()
{
if(((event.keyCode<48)||(event.keycode>57)))
{
event.keyCode=0;
}
}

0 Comments: