Guest User

Untitled

a guest
Oct 19th, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. // Campus Tools Toggler
  2. $("a.campus_tools").live("click", function(e){
  3. var $link = $(this).find("div:first");
  4. if ($link.hasClass("collapsed")) {
  5. // expand
  6. $link.removeClass("collapsed").addClass("expanded");
  7. $("div#campus_tools").animate({ height : 108 }, 200, function(e){
  8. $("div#campus_tools div.content:first").fadeIn();
  9. });
  10. }
  11. else {
  12. // collapse
  13. $("div#campus_tools div.content:first").stop().hide();
  14. $link.removeClass("expanded").addClass("collapsed");
  15. $("div#campus_tools").animate({ height : 2 }, 200);
  16. }
  17. return false;
  18. });
Add Comment
Please, Sign In to add comment