Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hide Select Menu

Status
Not open for further replies.

jgos

Programmer
Sep 27, 2002
38
US
Is there a way to change the visibility state of a Select Menu? In other words hide or show it?
 
if you about <SELECT></SELECT>
you will define name or id for this object
<SELECT name=&quot;my_select&quot;></SELECT>

then in javascript code you can show/hide it
document.getElementByName[&quot;my_select&quot;].style.display = &quot;none&quot;; (&quot;inline&quot; for show)

================================
Sincerely,
Vlad Smachny
AlarIT programmer
================================
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top