Guest User

Untitled

a guest
Jun 20th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. $(document).ready(function(){
  2. $(".collapsible-body").hide();
  3. $(".collapsible-title").click(function(){
  4. $(".collapsible-body").not($(this).siblings()).slideUp(300);
  5. $(this).siblings(".collapsible-body").slideToggle(300);
  6. })
  7. });
Add Comment
Please, Sign In to add comment