Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. $(document).ready(function() {
  2. $('.expandButton').click(function() {
  3. $('.expandableSection').toggle("slide");
  4. });
  5. });
  6.  
  7. <h1 class="expandButton"></h1>
  8. <div class="expandableSection">
  9. </div>
  10.  
  11. <h1 class="expandButton"></h1>
  12. <div class="expandableSection">
  13. </div>
  14.  
  15. <h1 class="expandButton"></h1>
  16. <div class="expandableSection">
  17. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement