Guest User

Untitled

a guest
May 27th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. $(document).ready(function() {
  2. var titles = $('#Menu').children("li.MenuTitle");
  3. $.each(titles, function(i, elem){
  4. var list = $(elem).children('ul.MenuItem').hide();
  5. $(elem).mouseover(function(){
  6. list.stop();
  7. list.slideDown();
  8. });
  9. $(elem).mouseout(function(){
  10. list.stop();
  11. list.slideUp();
  12. });
  13. });
  14. });
Add Comment
Please, Sign In to add comment