Closed
Bug 126369
Opened 23 years ago
Closed 23 years ago
bourse-de-paris.fr - Javascript menus do not work (document.all)
Categories
(Tech Evangelism Graveyard :: French, defect, P1)
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: plm, Assigned: tristan)
References
()
Details
(Whiteboard: [eurocontest][havefix][havecontact])
Javascript menus don't work, therefore site is unusable since there is no other
way to navigate the site.
Webmaster once told me that only IE is supported (when using my private email
addresss), when I used by credit-suisse email address he promised that they
would make the site compatible with other browsers "soon" (this was 6 months ago).
Comment 1•23 years ago
|
||
confirming and changing summary
Status: UNCONFIRMED → NEW
Ever confirmed: true
Summary: http://www.bourse-de-paris.fr/defaultgb.htm → bourse-de-paris.fr - Javascript menus do not work (document.all)
Comment 2•23 years ago
|
||
They still does not work.
Build ID 2002050108 - WinXP.
Whiteboard: [eurocontest]
Comment 3•23 years ago
|
||
they need to replace the <script> ... </script> part starting around line 150
with this version :
if (document.layers) {document.write('<layer id="globalDiv"
onMouseOver="cache()" left="0" top="0" width="100%" height="100%" z-index="1"
visibility="hidden"></layer>')}
else {document.write('<div id="globalDiv" style="z-index:0; position:absolute;
left:3px; top:0px; width:770; height:100; visibility: hidden"
onMouseOver="cache()"></div>')}
function UpdateIt(){
if(document.all){
setTimeout("UpdateIt()", 200);
}
}
UpdateIt();
function veriForm(aForm) {
if ((aForm.vUsr.value.length==0) && (aForm.vPwd.value.length==0)) {
top.document.location.href="/servlet/village9.user_identZone?lang=en";
return false;
}
return true;
}
function checkFind(aForm) {
return (aForm.search.value.length>0);
}
ns4 = (document.layers)? true:false;
ie4 = (document.all)? true:false;
dom = (document.getElementById)? true:false;
last='default';
function montre(string) {
if (last!=string) {cache()}
if (ie4) {thislayer=eval('document.all.'+string+'.style')}
else if (ns4) {thislayer=eval('document.'+string) }
else if (dom) { thislayer= document.getElementById(string).style }
thislayer.visibility="visible";
last=string;
if (ie4) {global=eval('document.all.globalDiv.style')}
else if (ns4) {global=eval('document.globalDiv')}
else if (dom) { global = document.getElementById('global').style; }
global.visibility='visible';
}
function cache() {
if (last!='default'){
if (ie4) {lastlayer=eval('document.all.'+last+'.style')}
else if (ns4) {lastlayer=eval('document.'+last)}
else if (dom) { thislayer= document.getElementById(string).style }
lastlayer.visibility="hidden";
if (ie4) {global=eval('document.all.globalDiv.style')}
else if (ns4) {global=eval('document.globalDiv')}
else if (dom) { global = document.getElementById('global').style; }
global.visibility='hidden';
}
}
Whiteboard: [eurocontest] → [eurocontest][havefix]
Comment 4•23 years ago
|
||
Contact :
mc.lagrange@euronext.fr
Whiteboard: [eurocontest][havefix] → [eurocontest][havefix][havecontact]
Updated•23 years ago
|
Priority: -- → P1
Comment 5•23 years ago
|
||
loading bourse-de-paris.fr I am redirected to http://www.euronext.com/fr/ , and
the menus works fine.
Status: NEW → RESOLVED
Closed: 23 years ago
Resolution: --- → FIXED
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
•