Closed
Bug 277501
Opened 20 years ago
Closed 18 years ago
picturesports.co.uk - Table not displayed in Firefox
Categories
(Tech Evangelism Graveyard :: English Other, defect)
Tech Evangelism Graveyard
English Other
Tracking
(Not tracked)
RESOLVED
WORKSFORME
People
(Reporter: dayres, Unassigned)
References
()
Details
Hello, Take a look at the URL using IE and you will see a table towards the bottom of the page. This is generated by a loop within the code that automatically expands is you need more rows. Look at the same page in Firefox 1.0 (Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.7.5) Gecko/20041110 Firefox/1.0) and the table is not displayed. Thanks for your time. Regards Dave
Comment 1•20 years ago
|
||
attachEvent is Microsoft's proprietary method. The W3C DOM equivalent is
addEventListener, so the usual thing to use is something like
if (sizeSelObj.addEventListener){
sizeSelObj.addEventListener( "onchange", calc, false );
} else {
sizeSelObj.attachEvent( "onchange", calc );
}Status: UNCONFIRMED → RESOLVED
Closed: 20 years ago
Resolution: --- → INVALID
Updated•20 years ago
|
Status: RESOLVED → UNCONFIRMED
Resolution: INVALID → ---
Comment 2•20 years ago
|
||
If they use IE-specific code the bug is Tech Evangelism, not INVALID.
Assignee: firefox → english-other
Component: General → English Other
OS: Windows XP → All
Product: Firefox → Tech Evangelism
QA Contact: general → english-other
Hardware: PC → All
Summary: Table not displayed in Firefox → picturesports.co.uk - Table not displayed in Firefox
Version: 1.0 Branch → unspecified
Comment 3•20 years ago
|
||
Up to you - when the reporter has an email address there, I tend to think that the evangelism has already been done.
Updated•18 years ago
|
Status: UNCONFIRMED → RESOLVED
Closed: 20 years ago → 18 years ago
Resolution: --- → WORKSFORME
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
•