wp-media / adminimize

Adminimize is a WordPress plugin that lets you hide 'unnecessary' items from the WordPress backend.
https://wordpress.org/plugins/adminimize/
GNU General Public License v2.0
100 stars 30 forks source link

Activate/Deactive all checkboxes in same row #12

Closed bueltge closed 8 years ago

bueltge commented 11 years ago

see: http://wordpress.org/support/topic/add-a-row-checkbox-toggle-button

bueltge commented 11 years ago
$('#some-table td.label').click( function() {
    $(this).parent().find('.checkbox').attr('checked', true);
});

via http://wordpress.org/support/topic/add-a-row-checkbox-toggle-button?replies=6#post-4813551