checkboxgroup

jQuery plugin for constructing analog of multiselect using checkboxes.

Usage no npm install needed!

<script type="module">
  import checkboxgroup from 'https://cdn.skypack.dev/checkboxgroup';
</script>

README

CheckBox Group

Allows to construct analog of <select multiple> using sequence of <input type="checkbox">.

Demo available at http://dmage.github.io/checkboxgroup/.

Usage

$(function () {
    $('.checkboxes').checkboxgroup();
});

<div class="checkboxes">
    <label><input type="checkbox"> Hello</label>
    <label><input type="checkbox"> World</label>
</div>