Closed
Bug 194597
Opened 22 years ago
Closed 22 years ago
javascript menus do not work properly on this site
Categories
(SeaMonkey :: General, defect)
Tracking
(Not tracked)
RESOLVED
DUPLICATE
of bug 102578
People
(Reporter: cris, Assigned: asa)
References
()
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.3b) Gecko/20030210
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.3b) Gecko/20030210
some javascipt menus just disappear when click on a link in them, instead of
loading the page. this is fine in windows builds, but occurs all the time on
linux builds.
Reproducible: Always
Steps to Reproduce:
1.go to www.oldhamathletic.co.uk
2. move mouse over the 'Today' image, a javascript menu should appear
3. click 'breaking news' or any of the other items in the menu
Actual Results:
menu just disappears
Expected Results:
mozilla should load the page associated with the link
Comment 1•22 years ago
|
||
This is bug 102578. For browsers without layer support, the menus are DIVs with
onmouseout handlers to make them disappear. The following bit of js sets up the
"Today" menu:
<script>
if (ns) { document.write('<div class="NavBarPopUpLayer"
style="z-index:100;position:absolute;visibility:visible;text-align:left;width:141px;"
style="text-align:left;">'); }
else { document.write('<div id="Today" class="NavBarPopUpLayer"
style="text-align:left; visibility: hidden;position:absolute;width:141px;"
onMouseover="showSubMenu(\'Today\')" onMouseout="hideSubMenu(\'Today\')">'); }
</script>
*** This bug has been marked as a duplicate of 102578 ***
Status: UNCONFIRMED → RESOLVED
Closed: 22 years ago
Resolution: --- → DUPLICATE
Updated•21 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•