I\'m trying to remove the individual items from the localStorage. I\'m using localStorage for storing selected list items in the listview. I attached the checkboxes for remo
try removing items like this, removing local storage items by their key values
//syntax is localStorage.removeItem('keyName'); //so if your key name is checked localStorage.removeItem('checked');
See this Link for reading about local storage.