Result
jQuery
$('.select-all').live('click', function(){
$(this).closest('.options').find('input[type=checkbox]').prop('checked', true);
return false;
});
$('.reset-all').live('click', function(){
$(this).closest('.options').find('input[type=checkbox]').prop('checked', false);
return false;
});
html
<ul>
<li class="select-all">Select All</li>
<li class="reset-all">Reset All</li>
</ul>
<input type="checkbox" id="option1" /><label for="option1">Option 1</label><br />
<input type="checkbox" id="option2" /><label for="option2">Option 2</label><br />
<input type="checkbox" id="option3" /><label for="option3">Option 3</label><br />
<input type="checkbox" id="option4" /><label for="option4">Option 4</label>
</div>
via
Warning: include(/home/youhei0828/kachibito.net/public_html/wp-content/themes/cocoon-master/my-php/jquery-other-snippets.php): Failed to open stream: No such file or directory in /home/youhei0828/kachibito.net/public_html/wp-content/themes/kachibito7_with_cocoon_child/functions-module/shortcode/add-post-myphp.php on line 7
Warning: include(): Failed opening '/home/youhei0828/kachibito.net/public_html/wp-content/themes/cocoon-master/my-php/jquery-other-snippets.php' for inclusion (include_path='.:/opt/php-8.1.32-2/data/pear') in /home/youhei0828/kachibito.net/public_html/wp-content/themes/kachibito7_with_cocoon_child/functions-module/shortcode/add-post-myphp.php on line 7
