InterviewSolution
Saved Bookmarks
| 1. |
Explain Mouseenter() Method In Jquery? |
|
Answer» The mouseenter() METHOD ATTACHES an event handler function to an HTML element. The function is executed when the MOUSE pointer ENTERS the HTML element: Example: $("#p1").mouseenter(function(){ alert("You entered p1!"); }); The mouseenter() method attaches an event handler function to an HTML element. The function is executed when the mouse pointer enters the HTML element: Example: $("#p1").mouseenter(function(){ alert("You entered p1!"); }); |
|