Put the following code in console.
1 2 3 4 5 6 | require([ "jquery" ], function ($){ $( ".mselect-fixed label" ).each( function ( index ) { if ($( this ).children( "input" ).hasClass( "mselect-checked" )){} else $( this ).trigger( 'click' ); }); }); |
Leave a Reply