i have a form with many feilds , but out of those i want to make some feilds required and i want without entring data into required feilds person should not move to nex field .
following is my function
[html] function validate_requir ed(field,alertt xt)
{
with (field)
{
if (value==null||v alue=="")
{
alert(alerttxt) ;
return false;
}
else {
return true;
}
}
[/html]
the problen is that want to set focus back to field i am checking how to do that ?
following is my function
[html] function validate_requir ed(field,alertt xt)
{
with (field)
{
if (value==null||v alue=="")
{
alert(alerttxt) ;
return false;
}
else {
return true;
}
}
[/html]
the problen is that want to set focus back to field i am checking how to do that ?
Comment