Events
- keypress
- keydown
- keyup
- mouseenter/mouseover
- mouseleave
- mouseup
- mousedown
- blur
- focus
- click
- doubleclick
- input
- inputchange
click: This event occurs when a user click on an element.
doubleclick: This event occurs when a user doubleclick on an element.
doubleclick: This event occurs when a user doubleclick on an element.
keydown:It gives the value before key release, while pressing the key only.
keyup:t gives the value after key release.
blur:It gives the value after focusing out/clicking other box.
focus:It gives the value when returing into the same input box.
mouseenter/mouseover:It gives the value when arrow enters the tag.
mouseleave:It gives the value when arrow leaves the tag.
mouseup
mousedown
change:This event is triggered when the value of an input element changes.
Comments
Post a Comment