Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.53 KB | None | 0 0
  1.     <script language="javascript" type="text/javascript" src="includes/jquery.min.js"></script>
  2.     <script language="javascript" type="text/javascript">
  3.     $(document).ready(function(){
  4.     $("#LoginLink").toggle(function() {
  5.   $('#login').slideUp('slow', function() {
  6.     // Animation complete.
  7.   });
  8.   $('#loginBox').slideDown('slow', function(){
  9.  
  10.   })
  11. },function(){
  12.     $('#login').slideDown('slow', function() {
  13.  
  14.     })
  15.     $('#loginBox').slideUp('slow', function(){
  16.  
  17.     })
  18. }
  19.  
  20.  
  21. );
  22.     });
  23.  
  24.  
  25.  
  26.  
  27.     </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement