Advertisement
christopherreay

Untitled

Jul 30th, 2011
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. allToggle = $(".colapsible");
  2. $(".colapsible").each(function()
  3. {   $(this).click(function()
  4.     { allToggle.each(function(index, value)
  5.         {if ($(this) != $(value))
  6.          { if (!$(this).is("collapsed"))
  7.            { Drupal.toggleFieldset(this);
  8.            }
  9.          }
  10.         }
  11.       )
  12.     }
  13.     );
  14. }
  15. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement