Feedback on: irt.org FAQ Knowledge Base Q1394
Comments:
found your script very useful, when just wanted user to enter number in CC field. what's the key numbers to allow the delete key and the numbers for the keypad on the right side of the keyboard? thx!
Worth:
Length:
Technical:
Not technical enough
Comments:
Try this.....
function validate()
{
if (document.getdate.date.value=='')
{
return false;
}
var pattern= new RegExp('/d+');
if ((pattern.test(document.getdate.date.value))==false) {
return false;
}
return true;
}