References

Collection of references for web development.

HTML onscroll event

Description

Execute JavaScript code when the user is scrolling the elements scrollbar.

Example

<textarea onscroll="this.style.backgroundColor = 'orange'">
Scroll down
Scroll down
Scroll down
Scroll down
Scroll down
</textarea>

More Examples