Search code examples
javascriptcookiesstorekey-value-store

how to store the values of the table in cookies


https://github.com/palani-08/travelblog/blob/main/html/table.html/table%20submission_files/index.html [I have attached this file, I'm not able to get the values of the table in cookies]


Solution

  • localStorage.myTable = document.querySelector('#myTab').innerHTML.trim() // store

    document.querySelector('#myTab').innerHTML = localStorage.table // restore