आप इस उद्देश्य के लिए HTML5 में स्थानीय संग्रहण का उपयोग कर सकते हैं। स्थानीय भंडारण भंडारण के लिए डिज़ाइन किया गया है जो कई विंडो तक फैला है और वर्तमान सत्र से परे रहता है। विशेष रूप से, वेब एप्लिकेशन उपयोगकर्ता डेटा के मेगाबाइट को स्टोर करना चाह सकते हैं, जैसे कि संपूर्ण उपयोगकर्ता-लेखक दस्तावेज़ या उपयोगकर्ता का मेलबॉक्स, क्लाइंट पक्ष पर प्रदर्शन कारणों से।
<!DOCTYPE HTML> <html> <body> <script> if( localStorage.hits ){ localStorage.hits = Number(localStorage.hits) +1; } else{ localStorage.hits = 1; } document.write("Total Hits :" + localStorage.hits ); </script> <p>Refresh the page to increase number of hits.</p> <p>Close the window and open it again and check the result.</p> </body> </html