Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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
What are common HTML Events supported by JavaScript?
The following are some of the common HTML events supported by JavaScript −
| Attribute |
Value |
Description |
|---|---|---|
| onclick |
script |
Triggers on a mouse click |
| oncontextmenu |
script |
Triggers when a context menu is triggered |
| ondblclick |
script |
Triggers on a mouse double-click |
| ondrag |
script |
Triggers when an element is dragged |
| ondragend |
script |
Triggers at the end of a drag operation |
| ondragenter |
script |
Triggers when an element has been dragged to a valid drop target |
| ondragleave |
script |
Triggers when an element is being dragged over a valid drop target |
| ondragover |
script |
Triggers at the start of a drag operation |
| ondragstart |
script |
Triggers at the start of a drag operation |
| ondrop |
script |
Triggers when dragged element is being dropped |
| ondurationchange |
script |
Triggers when the length of the media is changed |
Advertisements