$('input.stat').each(function(){ if (localStorage.getItem(this.name) == "true") { this.checked = "checked"; } else { this.removeAttribute("checked"); } });