Advertisement
Evilpoo

my_code.js

Sep 29th, 2014
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function() {
  2.  
  3. $("p").hide();
  4.  
  5.   $("h1").click(function() {
  6.     $(this).next().slideToggle(300);
  7.   });
  8.  
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement