InterviewSolution
Saved Bookmarks
| 1. |
Which method is used to remove a binding?(a) Unbind()(b) removebind()(c) remove(Bind b)(d) unbind() |
|
Answer» Right option is (d) unbind() The explanation is: The unbind() method removes event handlers from selected elements. This method can remove all or selected event handlers, or stop specified functions from running when the event occurs. |
|