

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Execute a script when a mouse wheel is being scrolled over an element in HTML?
When a mouse wheel is being scrolled over an element, the onwheel attribute triggers.
Example
You can try to run the following code to execute a script when a mouse wheel is being scrolled over an element in HTML −
<!DOCTYPE html> <html> <head> </head> <body> <div id = "myDIV" onwheel = "display()">This is demo text. Roll the mouse wheel here.</div> <script> function display() { alert("Mouse Wheel used!"); } </script> </body> </html>
- Related Questions & Answers
- Execute a script when an element's scrollbar is being scrolled in HTML?
- Execute a script when the mouse wheel rolls up or down over an element in HTML?
- Execute a script when a mouse button is released over an element in HTML?
- Execute a script when a mouse pointer moves over an element in HTML?
- Execute a script when an element is being dragged over a valid drop target in HTML?
- Execute a script when the element is being clicked in HTML?
- Execute a script when the element is being dragged in HTML?
- Execute a script when the element is being double-clicked in HTML?
- Execute a script when the dragged element is being dropped in HTML?
- Execute a script when a mouse button is pressed down on an element in HTML?
- Execute a script when a mouse pointer moves out of an element in HTML?
- Execute a script as long as the mouse pointer is moving over an element in HTML?
- Execute a script when the content of the element is being cut in HTML?
- Execute a script when the content of the element is being copied in HTML?
- Execute a script when the browser window is being resized in HTML?
Advertisements