Closed
Bug 99919
Opened 23 years ago
Closed 23 years ago
NN6 doesn't create event onscroll, so it can't be used with javascript
Categories
(Core :: DOM: Events, defect)
Tracking
()
People
(Reporter: christian, Assigned: joki)
Details
In NN6 there's no possibility - or I just couldn't find it - to call a function
if the page gets scrolled.
I tried the following:
function test() { alert("scrolling"); }
- window.addEventListener('scroll', test, true);
- window.addEventListener('onscroll', test, true);
- document.addEventListener('scroll', test, true);
- document.addEventListener('onscroll', test, true);
- window.onscroll = test;
Comment 1•23 years ago
|
||
*** This bug has been marked as a duplicate of 35011 ***
Status: UNCONFIRMED → RESOLVED
Closed: 23 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•