This easy-to-implement jQuery code snippet is super useful, and can be used to create a functionality that will check OR uncheck any checkboxes within a particular fieldeset. So for example, if your HTML looks like this: <fieldset> <div><input type=“checkbox” class=“checkall”>Check All</div> <div><input type=“checkbox”>Check Me</div> <div><input type=“checkbox”>Check Me</div> <div><input type=“checkbox”>Check Me</div> </fieldset> Your jQuery code to […]
Comments Off on jQuery Snippets: Check/Un-Check All Function