I have a Fiddle that shows how I get an jq .map() array of the status of the checkboxes on my site. It produces the following object in the console:
[Object {name="Sunday", status="Checked"}, Object {name="Monday", status="Checked"}, Object {name="Tuesday", status="UnChecked"}]
The object is saved to local storage. Now, obviously, on next time the user visits the page, I want to pull that object back and parse it to check off the previously checked boxes (yes, I am aware local storage is not ideal, but it is fine for this project). I know how to programmatic check off the checkboxes, but I cannot seem to loop through the saved object.
Here is the code jsfiddle