I am trying to use local storage for my little table where i just want to save few things here is my current code:
$("#dodaj").click(function()
{
var str = "<tr onclick='Oznaci(this)'><td>"+stevilka+"</td><td>"+naslov+"</td><td>"+vrsta+"</td><td>"+nujnost+"</td><td>"+datum+"</td></tr>";
$("#tabela").append(str);
localStorage.podatki = localStorage.podatki + str;
});
$("#odstrani").click(function()
{
{
$(".rdeca").remove();
localStorage.removeItem(".rdeca");
}
});
function Oznaci(vrstica)
{
$(vrstica).css({"background-color":"#FF0000"});
$(vrstica).attr("class","rdeca");
}
I sucessfully add to the localStorage, but when i call localStorage.removeItem(".rdeca"); it does not remove it. I am probably removing the wrong thing (.rdeca). As i should probably remove the string combined like str from it, but i dont know how i can manage to do thath. THanks for your help
localStorage.removeItem("rdeca")– Arun P Johny Jan 30 at 16:15.rdecaitem? I only see you setting thepodatkiitem. – apsillers Jan 30 at 16:17localStoragewhen i click delete. – HyperX Jan 30 at 16:19