Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var f = function () {
- if($(this).is(':checked')) {
- $('.' + $(this).attr('rel')).show();
- } else {
- $('.' + $(this).attr('rel')).hide();
- }
- };
- $('table.services input[type=checkbox]').each(f).click(f);
Advertisement
Add Comment
Please, Sign In to add comment