Hello Good afternoon Guys
Iam KNR iam having a problem with javascript validation
i want to check validation of all controls at a time means
if i have a form with all fields blank then it has to show message
and if any of the field is filled then it dont have to show the message and
the message about blank field has to shown
if(trim(cname.value) == '')
{
alert('Enter a Name');
cname.focus();
return false;
}
please help me