Radio button
hellow every body i have problem to geting focus on radio button
i have two radio button with the name tile
i have following code but not working
please help
and how to get focus on chechboxes
thanks in advance
code:
myval=dcument.form1;
for (var i=0;i<myval.title.length;i++)
{
if(myval.title[i].checked)
{
mytitle = 1;
}
}
if (mytitle == 0 )
{
alert("You must be select title field");
myval.title[0].focus();
return (false);
}
Nabi bux
|