jQuery(document).ready(function($) { if($('input#ac-highlight-comments-no').attr('checked')) { $('#ac_highlight_colors').closest('tr').hide(); } if($('input#ac-timer-no').attr('checked')) { $('#ac_time_to_edit').closest('tr').hide(); } //show colors $(document).on('click', 'input#ac-highlight-comments-yes', function(event) { $('#ac_highlight_colors').closest('tr').fadeIn(300); }); //hide colors $(document).on('click', 'input#ac-highlight-comments-no', function(event) { $('#ac_highlight_colors').closest('tr').fadeOut(300); }); //show timer $(document).on('click', 'input#ac-timer-yes', function(event) { $('#ac_time_to_edit').closest('tr').fadeIn(300); }); //hide timer $(document).on('click', 'input#ac-timer-no', function(event) { $('#ac_time_to_edit').closest('tr').fadeOut(300); }); $('.ac-color-picker').wpColorPicker(); });