Advertisement
puellae-themes

Slide1

Jan 20th, 2013
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.52 KB | None | 0 0
  1. <script src="http://static.tumblr.com/me5sfsd/1YFl414t0/jquery142.js"></script>
  2.  
  3. <script type="text/javascript">
  4.  
  5. $(document).ready(function () {
  6.  
  7. $('li.drawer div:nth-child(2)').hide();
  8.  
  9. $('li.drawer h4').click(function () {
  10.  
  11. if ($(this).hasClass('open')) {
  12.  
  13. $('li.drawer div:visible:nth-child(2)').slideUp().prev().removeClass('open');}
  14.  
  15. else {
  16.  
  17. $('li.drawer div:visible:nth-child(2)').slideUp().prev().removeClass('open');
  18.  
  19. $(this).next().slideDown();
  20.  
  21. $(this).addClass('open');}
  22.  
  23. });
  24.  
  25. });
  26.  
  27. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement