function valid()
{
if(document.forgotform.uName.value=='')
{
alert("Please Enter your Name ");
document.forgotform.uName.focus();
return false;
}
if(document.forgotform.uEmail.value=='')
{
alert("Please Enter Email ");
document.forgotform.uEmail.focus();
return false;
}
else
{
if (document.forgotform.uEmail.value.indexOf("/") > -1 || document.forgotform.uEmail.value.indexOf("@") == -1 || document.forgotform.uEmail.value.indexOf(".") == -1 || document.forgotform.uEmail.value.indexOf("@"+".") > -1)
{
window.alert("Provide valid email address");
document.forgotform.uEmail.focus();
return false;
}
}
var x = document.forgotform.phone_no.value;
if(isNaN(x)||x.indexOf(" ")!=-1)
{
alert("Enter numeric value")
return false;
}
if (x.length>8)
{
alert("enter 8 characters");
return false;
}
if (x.charAt(0)!="0")
{
alert("it should start with 0 ");
return false
}
var y = document.forgotform.nPost.value;
if(isNaN(y)|| y.indexOf(" ")!=-1)
{
alert("Enter valid PostCode ");return false;
}
}
|
|
PORTFOLIO
|
|
|
| |
|
|
|
|
LATEST NEWS
|
|
|
| |
|
|
|
|