(Choose
1
Consider the below code:
div { width:50%; height:300px; overflow:scroll; }
answer)
<div onscroll="myFunc()"> </div>
Choose the right statement?
A. Script to be run when an element's scrollbar is being scrolled
B. The Script cannot run because the "onscroll" event is not supported by all browsers.
C. Script to be run when a div's scrollbar is being scrolled
D. Script to be run when window's scrollbar is being scrolled
Q: 45