Advertisement
Guest User

Untitled

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