Guest User

script

a guest
Nov 20th, 2012
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(function() {
  2.     $("#news").click(function() {
  3.         if( !$('#rectangle').is(':visible') ) {
  4.             $("#rectangle").hide(2000);
  5.         };
  6.         else {
  7.             $("#rectangle").show(2000);
  8.         };
  9.     });
  10. });
Advertisement
Add Comment
Please, Sign In to add comment