Simple way to save state on checkboxes
Released under MIT License. Refer to LICENSE file for details.
1.- git clone checky into your webpage directory
git clone https://github.com/yamishi13/checky.git
or download a release for full tested code
2.- Add checky to your html Development
<script type="text/javascript" src="checky/checky.js"></script>
Production
<script type="text/javascript" src="checky/checky-min.js"></script>
3.- Instantiate and checkyfy checkboxes
ck = new Checky();
ck.checkyfy("checkbox tag id");
or checkyfy a checkbox with an anchor
ck = new Checky();
ck.checkyfy("checkbox tag id", "anchor tag id");