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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem with fireworks pull down menu

Status
Not open for further replies.

sharkbiteart

Technical User
Jan 22, 2008
11
CA
Here is my site:


The pull down menu on the index page works like it should.

On subsequent pages I added a lightbox popout feature on the slideshows.

Now the pull down menu "jams" after the first rollover - the links still work.

There probably are other codeing issues - I'm no expert - but if anyone has a quick fix for me I would be eternally grateful!

Thanks,
Paul
 
You need to use a Javascript error console on your browser. There seem to be several errors and LOTS of warnings generated in your javascript

___________________________________________________________
If you want the best response to a question, please check out FAQ222-2244 first.
'If we're supposed to work in Hex, why have we only got A fingers?'
Drive a Steam Roller
Steam Engine Prints
 
Thanks, I had a feeling there would be some work to do, do you have a suggestion as to where to start? (Javascript error console on your browser?)
 
Since your dropdown only appears on the very first rollover, and the error console gives an error at each rollover after that, it looks like your variables may be scoped incorrectly. Since this appears to be a Javascript problem rather than a DW problem I suggest you first track down your specific problem and then ask in forum216

___________________________________________________________
If you want the best response to a question, please check out FAQ222-2244 first.
'If we're supposed to work in Hex, why have we only got A fingers?'
Drive a Steam Roller
Steam Engine Prints
 
OK, so nobody at that forum is answering my question, perhaps I can get a little more help here.
It looks like the error is in the line


m.style.visibility = "hidden";


in this bit of code
}
if( mmOpenMenus ) {
for(var i in mmOpenMenus) {
var m = document.getElementById(mmOpenMenus);
m.style.visibility = "hidden";
}
mmOpenMenus = null;
}

does that help?

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top