Advertisement
AliShahbaz

slide up and down jquery mouseover mouse down

Feb 4th, 2014
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function(){
  2.   $("#wrap").mouseover(function(){
  3.    $(this).children("div").stop().slideDown("fast");
  4.   });
  5.   $("#wrap").mouseout(function(){
  6.    $(this).children("div").slideUp("fast");
  7.   });
  8.  });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement