HosipLan

Untitled

Dec 12th, 2011
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var f = function () {
  2.     if($(this).is(':checked')) {
  3.         $('.' + $(this).attr('rel')).show();
  4.     } else {
  5.         $('.' + $(this).attr('rel')).hide();
  6.     }
  7. };
  8.  
  9. $('table.services input[type=checkbox]').each(f).click(f);
  10.  
Advertisement
Add Comment
Please, Sign In to add comment