Advertisement
Guest User

Untitled

a guest
Jun 14th, 2015
351
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js" type="text/javascript"></script>
  2. <script>
  3.  
  4. $(document).ready(function() {
  5.  
  6.  
  7. $("#toggle_it").click(function () { $(".to_toggle").toggle(1000); });
  8.  
  9. $(".to_toggle").show();
  10.  
  11. $("#toggle_it1").click(function () { $(".to_toggle1").toggle(1000); });
  12.  
  13. $(".to_toggle1").show();
  14.  
  15. })
  16. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement