InterviewSolution
Saved Bookmarks
| 1. |
Write a query selector to select all the checkboxes in a form in jQuery? |
Answer»
The FOLLOWING is the way to WRITE a anonymous FUNCTION inside mouseover() to SHOW submenu. $('#menu').mouseover(function() { $('#submenu').show(); // shows the submenu with id ‘submenu’ }); |
|