whyisjake

Jake Spurlock

Jul 23rd, 2010
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $('#toggle').click(function() {
  2.                 if ($('#shortcuts').is(':visible')) { //Basic function here checks for the form and then brings it in if it isn't showing.
  3.                     $('#shortcuts').slideUp('slow');
  4.                     $('#overlay').hide();
  5.                 }
  6.                
  7.                 else {
  8.                     $('#shortcuts').slideDown('slow');
  9.                     $('#overlay').fadeTo('slow', 0.5);
  10.                    
  11.                 }
  12.             });
  13.            
  14.             $('#close').click(function() {
  15.                 if ($('#shortcuts').is(':visible')) { //Basic function here checks for the form and then brings it in if it isn't showing.
  16.                     $('#shortcuts').slideUp('slow');
  17.                 }
  18.                
  19.                 else {
  20.                     $('#shortcuts').slideDown('slow');
  21.                     //$('#overlay').fadeIn();
  22.                     $('#overlay').fadeTo('slow', 0.5);
  23.                    
  24.                 }
  25.             });
Add Comment
Please, Sign In to add comment