Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.24 KB | None | 0 0
  1. $(document).ready(function() {
  2.     $("#pumpernikiel ol>li>a").hover(
  3.         function() {
  4.             $(this).children('li').slideDown();
  5.         },
  6.         function() {
  7.             $(this).children('li').slideUp();
  8.         }
  9.     );
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement