View Single Post

  #2 (permalink)  
Old 15-01-2007, 03:21 PM
ph3n0m's Avatar
ph3n0m ph3n0m is offline
Webmonkey
 
Join Date: Jan 2006
Location: Ireland
Posts: 300
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
ph3n0m will become famous soon enough
Default

comment out or remove the following lines in your javascript

this will prevent the auto expansion from happening - if you want to go the other route, and have the expansion happen either way, let me know

Code:
            if(aTags[no].href.indexOf(fileNameThis)>=0 && aTags[no].href.charAt(aTags[no].href.length-1)!='#'){                
                if(aTags[no].parentNode.parentNode){                                
                    var parentObj = aTags[no].parentNode.parentNode.parentNode;
                    var a = parentObj.getElementsByTagName('A')[0];
                    if(a.id && !activeMenuLink){
                        
                        activeMenuLink = aTags[no];
                        activeMenuItem = a.id;
                    }
                }
            }
Reply With Quote