For Programmers: Free Programming Magazines  


Home > Archive > ASP > November 2007 > show/hide divs on checkbox click









You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

 

Author show/hide divs on checkbox click
Mike P

2007-11-16, 6:56 pm

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;
}
}

<form action=processAddCompanyAndContact.asp?process=amend method=post
onSubmit="return Validate2()" name="Form2">

<input type="checkbox" name="ContactType"
onClick="HideShowContactDetails()" />





*** Sent via Developersdex http://www.developersdex.com ***
Dooza

2007-11-16, 6:56 pm

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;
> }
> }
>
> <form action=processAddCompanyAndContact.asp?process=amend method=post
> onSubmit="return Validate2()" name="Form2">
>
> <input type="checkbox" name="ContactType"
> onClick="HideShowContactDetails()" />


Don't you need to give the input a default value?
Sponsored Links







Also available: Server administration forum archive | Web Design forum archive | Software forum archive | Hardware reviews archive

Copyright 2008 codecomments.com