Contact
Email us
function validateForm() {
var x = document.forms["myForm"]["feed_first"].value;
if (x == "") {
alert("First name is required");
return false;
}
var x = document.forms["myForm"]["feed_last"].value;
if (x == "") {
alert("Last name is required");
return false;
}
var x=document.forms["myForm"]["form_email"].value;
if (x==null || x=="")
{
alert("You need to Enter an email address");
return false;
}
var x=document.forms["myForm"]["Code"].value;
if (x==null || x=="")
{
alert("You need to enter the Anti Spam Code");
return false;
}
}
* required
* required