Closed
Bug 74968
Opened 24 years ago
Closed 23 years ago
musicplay.de - JavaScript driven menu isn't loaded.
Categories
(Tech Evangelism Graveyard :: German, defect, P4)
Tracking
(Not tracked)
VERIFIED
INVALID
People
(Reporter: matthew2k, Assigned: tristan)
References
()
Details
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (X11; U; Linux 2.4.3-ac2 i686; en-US; 0.8.1)
BuildID: 2001040409
The JavaScript driven menu at http://www.musicplay.de/ doesn't load. It keeps on
displaying that it is loading but nothing happens.
Reproducible: Always
Steps to Reproduce:
1.Surf to http://www.musicplay.de/
Actual Results: Menu at the left side isn't loaded (keeps on showing "Lade
Menü..").
Expected Results: Menu should be loaded (works perfect with Netscape 4.7x).
Comment 1•24 years ago
|
||
The problem here is the way the menu is written.
Html for the menu is generated and then written using the following:
(It's near the end of the showMenu function in menu.js if you're interested)
if (document.all)
{
document.all['men'].innerHTML=code;
}
else
{
x=document.layers.men_layer.document;
x.open();
x.write(code);
x.close();
}
document.all will be false for mozlla, and so document.layers is used, which is
what the standards contain, (and not what mozilla uses).
The page will work if this is added before the 'else':
else if (document.getElementById)
{
document.getElementById('men').innerHTML=code;
}
Comment 2•24 years ago
|
||
Oops. I missed out a 'not' in my previous comment.
I should have said that document.layers is not what the standards contain.
Updated•24 years ago
|
Assignee: rogerl → evangelism
Status: UNCONFIRMED → NEW
Component: Javascript Engine → Evangelism
Ever confirmed: true
QA Contact: pschwartau → zach
Comment 3•24 years ago
|
||
-> Evangelism
Thx Connor
Reporter | ||
Comment 4•24 years ago
|
||
Thanks for the detailed information! :) I'll try to contact the webmaster of the
site and maybe I can get them to include your fix...
Comment 5•24 years ago
|
||
Reassigning evangelism bugs to bclary@netscape.com.
Assignee: evangelism → bclary
Updated•24 years ago
|
Priority: -- → P4
Updated•24 years ago
|
Component: Evangelism → European
Product: Browser → Tech Evangelism
Version: other → unspecified
Comment 7•23 years ago
|
||
Moving to new component "West Europe". European component is being removed.
See bug 95808 for details.
Component: European → West Europe
QA Contact: zach → caillon
Summary: JavaScript driven menu isn't loaded. → musicplay.de - JavaScript driven menu isn't loaded.
Comment 8•23 years ago
|
||
site seems dead
Reporter | ||
Comment 9•23 years ago
|
||
Indeed the company has gone out of business - like so many in the past few month
unfortunately. :(
Comment 10•23 years ago
|
||
invalid then (fixed is kinda futile if the site is dead).
Status: NEW → RESOLVED
Closed: 23 years ago
Resolution: --- → INVALID
Comment 11•23 years ago
|
||
See what happens when people don't use standards compliant pages? Less people
are able to access their site and spend money on all the web goodies they
sell/provide.
I wonder if we can market that for our evangelism campaign... heh :)
Verifying INVALID - site doesn't exist.
Status: RESOLVED → VERIFIED
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
•