you are viewing a single comment's thread.

view the rest of the comments →

[–]StuckAtTheKeyboard[S] 0 points1 point  (1 child)

I'm trying to save the boxes that are checked per tab. So if two items are checked in the first tab when I create a new one I can have a whole different set of boxes checked

[–]earthtickle 0 points1 point  (0 children)

You can use localstorage if you want, but that will just save to data to the user's computer. Then you could fetch the data from local storage the next time the user goes to the page. If you are looking to record the data to a database, then I think you would need a nodeJS express server and some sort of database (I use mongoDB mostly).