I am a guy trying to learn js & css in my spare time. Can anyone show me how to validate this form?
Thursday, January 29th, 2009Form Validation help?
I am just learning HTML and trying my hand at javascript. I made the form below and need to validate it. The name field cannot contain numbers, the phone field can contain on letters and no more than 10 numbers and no field can be blank. Can anyone help? Idon’t even know where to place the code.
AmeriMex Restaurant
Comment Form
“Tell us what you think”
var dayarray=new Array("Sunday","Monday","Tuesd... var montharray=new Array("January","February","Ma...
function getthedate(){ var mydate=new Date() var year=mydate.getYear() if (year < 1000) year+=1900 var day=mydate.getDay() var month=mydate.getMonth() var daym=mydate.getDate() if (daym<10) daym="0"+daym var hours=mydate.getHours() var minutes=mydate.getMinutes() var seconds=mydate.getSeconds() var dn="AM" if (hours>=12) dn=”PM” if (hours>12){ hours=hours-12 } if (hours==0) hours=12 if (minutes<=9) minutes="0"+minutes if (seconds<=9) seconds="0"+seconds //change font size here to change the color to that of the pepper in the links var cdate="“+dayarray[day... "+montharray[month]+” “+daym+”, “+year+” “+hours+”:”+minutes+”:”+second… “+dn +”” if (document.all) document.all.clock.innerHTML=c… else if (document.getElementById) document.getElementById(”clock… else document.write(cdate) } if (!document.all&&!document.getE… getthedate() function goforit(){ if (document.all||document.getEle… setInterval(”getthedate()”,100… }

