Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Javascript > making select visible \ invisible

Reply
Thread Tools

making select visible \ invisible

 
 
R.G. Vervoort
Guest
Posts: n/a
 
      04-12-2004
is it possible to make an select visible or invisible by selecting a
checkbox.

Thanks for suggestions

Roy


 
Reply With Quote
 
 
 
 
R.G. Vervoort
Guest
Posts: n/a
 
      04-12-2004
found it

<script language="JavaScript">
<!--
function Menue()
{
if (document.all.naam_keuze.style.visibility == "hidden")
{
document.all.naam_keuze.style.visibility="visible"
}
else
document.all.naam_keuze.style.visibility="hidden"

}
//-->
</script>


<body>

<input type="checkbox" name="Internet" value="OFF" onClick="Menue()">


<select id="naam_keuze" size="1" name="Bereich">
<option selected value>-- bitte auswählen --</option>
<option>Marketing</option>
</select></div>





</body>



"R.G. Vervoort" <> schreef in bericht
news:407ae7d6$0$570$...
> is it possible to make an select visible or invisible by selecting a
> checkbox.
>
> Thanks for suggestions
>
> Roy
>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Making 1 control invisible while showing another in the exact location of the invisible one Andy B ASP .Net 5 05-29-2008 03:08 AM
making a server control visible / invisible in a DataList SP ASP .Net 1 03-01-2006 05:50 PM
Making table rows visible/invisible in Netscape Harry Gould Javascript 4 05-28-2004 07:00 PM
making your page invisible then visible Stuart Wexler Javascript 2 07-22-2003 07:38 PM
making webcontrols visible/invisible Susan van Houen ASP .Net 1 07-13-2003 01:14 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57