Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Sep 13th, 2012  |  syntax: None  |  size: 0.25 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. $(function() {
  2.   $('.buttonlist .toggle').click(function() {
  3.     var tohide = '#' + $(this).attr('tohide');
  4.     if ($(tohide).hasClass('hidden')) {
  5.       $(tohide).removeClass('hidden');
  6.     } else {
  7.       $(tohide).addClass('hidden');
  8.     }
  9.   });
  10. });