InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is not event method in jQuery?(a) click()(b) mouseenter()(c) mousedown()(d) hide()I got this question during an interview.This is a very interesting question from Essential JavaScript and jQuery topic in portion HTML Tables, Javascript & Jquery Basics of HTML |
|
Answer» CORRECT option is (d) hide() The explanation is: The actions that can be performed on the WEB page are called events. Some common DOM events are blur(), click(), bilnd(), change(), DBCLICK(), eroor(), DELEGATE(), die(), event.data, event.currentTarget, event.pageX, mouseenter(), mousedown(), event.result, event.target, focus(), hover(), keydown(), focusout(), live(), LOAD(), keyup() etc. |
|