Closed
Bug 211548
Opened 22 years ago
Closed 14 years ago
swissre.com - JavaScript pulldown menu is not displayed
Categories
(Tech Evangelism Graveyard :: English Other, defect)
Tech Evangelism Graveyard
English Other
Tracking
(Not tracked)
RESOLVED
INCOMPLETE
People
(Reporter: talentix, Unassigned)
References
()
Details
(Whiteboard: [havecontact] [bug248549notfixed])
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.4) Gecko/20030624
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.4) Gecko/20030624
JavaScript pulldown menu of the upper menu items is not displayed!
Reproducible: Always
Steps to Reproduce:
1. Move mouse over menu Locations
2. nothing happens
3.
Actual Results:
nothing
Expected Results:
opend the pulldown menu
Comment 1•22 years ago
|
||
Find this in JS console while loading site...
Error: document.all is not a function
Source File: http://www.swissre.com/INTERNET/pwswpspr.nsf/vwhomepagelu/topnav
Line: 109
In http://www.swissre.com/INTERNET/pwswpspr.nsf/vwhomepagelu/topnav, code is
only made for NS 4.x / IE 4.x and younger
Just look at this :
"<!--
NS4 = (document.layers);
IE4 = (document.all);
ver4 = (NS4 || IE4);
IE5 = (IE4 && navigator.appVersion.indexOf("5.")!=-1);
isMac = (navigator.appVersion.indexOf("Mac") != -1);
isMenu = ( ((IE4 && !isMac) || (IE5 && !isMac)) && true);
function popUp(){return};
function popDown(){return};
function hideJavaApp(){return};
function showJavaApp(){return};
if (!ver4) event=null;
//-->"
And for menu code when passing over an item :
"<!--
function UtilMouseOver( opt, cname ) {
if (NS4) {
// document.layers['NS' + opt].visibility='show';
// alert('here')
// alert(parent.frames[1].document.forms[0].document.layers[0] + ' ')
}
else {
document.all(opt).className = cname;
document.all('A' + opt).className = cname;
}
}"
And so on until the end of the JS code.
Moving this to tech evangelism, English other (no Switzerland in list ?)
Contact page :
http://www.swissre.com/INTERNET/pwsfrmpr.nsf/fmContact?OpenForm&_ModPath=INTERNET/pwswpspr.nsf&_MailTo=WEBSITE+CONTACT/SwissRe
Status: UNCONFIRMED → NEW
Ever confirmed: true
OS: Windows 2000 → All
Hardware: PC → All
Whiteboard: [havecontact]
Comment 2•22 years ago
|
||
Forgot to change component ! Oops ! :-[
Component: Browser-General → English Other
Product: Browser → Tech Evangelism
Version: Trunk → unspecified
Comment 3•22 years ago
|
||
Correcting bug owner/QA.
Assignee: general → english-other
QA Contact: general → english-other
Updated•21 years ago
|
Summary: JavaScript pulldown menu is not displayed → swissre.com - JavaScript pulldown menu is not displayed
Updated•21 years ago
|
Whiteboard: [havecontact] → [havecontact] [bug248549notfixed]
Comment 4•14 years ago
|
||
INCOMPLETE due to lack of activity since the end of 2009.
If someone is willing to investigate the issues raised in this bug to determine whether they still exist, *and* work with the site in question to fix any existing issues, please feel free to re-open and assign to yourself.
Sorry for the bugspam; filter on "NO MORE PRE-2010 TE BUGS" to remove.
Status: NEW → RESOLVED
Closed: 14 years ago
Resolution: --- → INCOMPLETE
Updated•10 years ago
|
Product: Tech Evangelism → Tech Evangelism Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•