HTML Editor
<!DOCTYPE html> <html lang="en-US"> <body> <div id="point"></div> <script> var x = document.getElementById("point"); if(typeof(Storage) !== "undefined") { localStorage.setItem("website", "wikimass.com"); x.innerHTML = localStorage.getItem("website"); } else{ x.innerHTML = "Sorry, your browser does not support Web Storage"; } </script> <p><strong>Note:</strong> Follow the instructions to see the data stored in your PC</p> <p>Press F12 to Open chrome <strong>developer tool</strong>.</p> <p>Click on Application Tab in top Horizontal Bar(click double arrow, if not visible).</p> <p>Point your focus in storage section in left side panel</p> <p>Click on the arrow in the left side of local Storage Tab</p> <p>click on https://wikimass.com. <strong>Done !!!</strong></p> </body> </html>
OUTPUT
×

Save as Private