I am trying to hide/show divs based upon whether or not a checkbox is
clicked. Here is what I have done so far to check if the method is
being called correctly, but I am getting the javascript error 'object
required' :
function HideShowContactDetails()
{
if (document.Form2.ContactType.value == "true")
{
alert ("Contact Type selected");
return false;
}
else
{
alert("Contact Type unselected");
return false;
}
}
onSubmit="return Validate2()" name="Form2">
onClick="HideShowContactDetails()" />
*** Sent via Developersdex http://www.developersdex.com ***
Re: show/hide divs on checkbox click
am 14.11.2007 18:44:37 von Dooza
Mike P wrote:
> I am trying to hide/show divs based upon whether or not a checkbox is
> clicked. Here is what I have done so far to check if the method is
> being called correctly, but I am getting the javascript error 'object
> required' :
>
> function HideShowContactDetails()
> {
> if (document.Form2.ContactType.value == "true")
> {
> alert ("Contact Type selected");
> return false;
> }
> else
> {
> alert("Contact Type unselected");
> return false;
> }
> }
>
>