hi i am trying to check if the user select yes or no ..it dos work but it give me an error saying "object doesn't support this property or method"
{
var o = document.getElementById('addyes');
var t = document.getElementById('addno');
if ( (o.checked == false ) && (t.checked == false ) )
{
alert ("Would you like any additional drivers? : Yes/No" );
document.carinsurance.additional.focus();
return false;
}
return true;
}
can any help me in that plz??