Go Back   CodingForums.com > :: Client side development > JavaScript programming

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 08-27-2004, 03:15 AM   PM User | #1
amory_tarr
New to the CF scene

 
Join Date: Aug 2004
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
amory_tarr is an unknown quantity at this point
changing display to none with javascript and onclick

I have three subsections of my menu -- places of interest, boarding and comparisons. When clicked, each will reveal a UL with a set of links. When I click on each of the three titles, I want any of the other two to change their display to none. Can someone give me a starting point to go on? Here is the webpage.


Thanks

Last edited by amory_tarr; 08-27-2004 at 03:22 AM..
amory_tarr is offline   Reply With Quote
Old 08-27-2004, 06:42 AM   PM User | #2
glenngv
Supreme Master coder!


 
glenngv's Avatar
 
Join Date: Jun 2002
Location: Los Angeles, CA Original Location: Philippines
Posts: 10,241
Thanks: 0
Thanked 112 Times in 111 Posts
glenngv will become famous soon enough
Code:
function hideULs(exceptId, containerId){
   var obj = (containerId) ? document.getElementById(containerId):document;
   if (obj && obj.getElementsByTagName){
      uls = obj.getElementsByTagName("UL");
      for (var i=0;i<uls.length;i++){
         if (uls[i].id!=exceptId){
            uls[i].style.display="none";
         }
      }
   }
}

function WM_toggle(id){
   var obj = document.getElementById(id);
   obj.style.display = (obj.style.display == "none") ? "block":"none";
   if (obj.style.display=="block") hideULs(id, "layout-mainright");
   return false;
} 
...
<div id="layout-mainright">
<br />

<h4><a href="#" onclick="return WM_toggle('navigation');">Places of interest</a></h4>
...
__________________
Glenn
_____________________________________________
Play Tower of Hanoi Android app (Ad-FREE!)
Play Tower of Hanoi Android app (FREE!)
Go to Tower of Hanoi Leaderboard
Play Tower of Hanoi Facebook app
glenngv is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

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

Forum Jump


All times are GMT +1. The time now is 07:35 PM.


Advertisement
Log in to turn off these ads.