diff --git a/js/input-list.js b/js/input-list.js index a15e68d89..33f8d4ac4 100644 --- a/js/input-list.js +++ b/js/input-list.js @@ -20,10 +20,10 @@ jQuery( function ( $ ) { $( '.rwmb-input-list-select-all-none' ).toggle( function () { - $('input.rwmb-checkbox_list[name="' + $(this).data('name') + '[]"]').prop('checked', true); + $('input[name="' + $(this).data('name') + '[]"]').prop('checked', true); }, function () { - $('input.rwmb-checkbox_list[name="' + $(this).data('name') + '[]"]').prop('checked', false); + $('input[name="' + $(this).data('name') + '[]"]').prop('checked', false); } ); } );