HTML onwheel Attribute
Example
<div onwheel="myFunction()">Roll the mouse wheel over me!</div>
Meaning
The onwheel attribute specifies the script run when the mouse wheel rolls up or down over an element.
Standard Syntax
<element onwheel="script">
Applies to:
The onwheel attribute can be used on the following element:
| Element | Attribute |
|---|---|
| All HTML elements | onwheel |
Advertisement
Attribute Values
| Value | Description |
|---|---|
| script | Specifies the script to be run on onwheel. |