03:28
<莫言>

Hello everyone, I have a problem, in HTML

// this is ok 
document.body.onscroll = (e) => {console.log('xxx', e)} 
 // this is not working
document.body.addEventListener('scroll', (e) => { console.log(e)})
10:26
<Jake Archibald>

Hello everyone, I have a problem, in HTML

// this is ok 
document.body.onscroll = (e) => {console.log('xxx', e)} 
 // this is not working
document.body.addEventListener('scroll', (e) => { console.log(e)})
You want to put the listener on the Window, not the body. https://jsbin.com/pitoqeg/edit?js,console,output
11:24
<annevk>
hsivonen: smaug: didn't you both ask me about https://github.com/web-platform-tests/wpt/pull/38199? Would be nice if it got reviewed
12:32
<hsivonen>
hsivonen: smaug: didn't you both ask me about https://github.com/web-platform-tests/wpt/pull/38199? Would be nice if it got reviewed
Approved. Thanks.
12:58
<roman harsveld>
i like to learn to build my own websites but have no have no idea where I can learn html
12:59
<roman harsveld>
i try html standard for learn