HTML5 Local Storage

HTML5 Local Storage Before

Share This Post

In a previous post, I wrote of the advantages of HTML5 storage. In today’s post, I want to give an example of HTML5 local storage.

First let’s create the HTML…

[code lang=”html”]
<!– HTML to demonstrate HTML5 Local Storage –>
<p>
<!– Button to click that will invoke our counter function. –>
<button onclick="clickCounter()" type="button">Click me!</button>
</p>
<!– Div that will hold the result of clicking the counter button. –>
<div id="result"></div>
<!– Instructions. –>
<p>Click the button to see the counter increase.</p>
<p>Close the browser tab (or window), and try again, and the counter will continue to count (is not reset).</p>
[/code]

So to set the stage, we have an HTML button that once clicked, will invoke a function called clickCounter(). Let’s take a look at what clickCounter() does…

[code lang=”js”]
// Function demonstrate utilization of local storage
function clickCounter() {
// Test whether browser has HTML5 storage capability
if (typeof (Storage) !== "undefined") {
// Test to see if there is an HTML5 local storage variable key called clickcount
if (localStorage.clickcount) {
// Since the storage variable exists, let’s add one to the value and store it back in the local storage variable
// We are running the variable through the number funtion to ensure it is an integer
localStorage.clickcount = Number(localStorage.clickcount) + 1;
} else {
// The clickcount local storage variable does not exist, so we create it.
// This should only run the first time we run the program.
localStorage.clickcount = 1;
}
// Grab our result div and display the results pulled from local storage
document.getElementById("result").innerHTML = "You have clicked the button " + localStorage.clickcount + " time(s).";
} else {
// Display a message if the browser does not support HTML5 storage
document.getElementById("result").innerHTML = "Sorry, your browser does not support web storage…";
}
}
[/code]

In the aforementioned code, we are testing for the availability of HTML5 storage. Next, we are checking to see if our variable exists in local storage. If it does, we add one to the value, otherwise, we create it.

Here are before and after screenshots…

HTML5 Local Storage Before

HTML5 Local Storage After

Further, with HTML5 Local Storage, the variable values are saved from session to session. So if you close your browser, come back in and click the button, the count will pick up from where it last left off.

Happy Coding!

Clay

More To Explore

Code

Demystifying Scrum User Stories Confirmation: Ensuring Quality and Collaboration

One of the key elements of Scrum is the use of user stories to define the requirements of a system or feature from the perspective of the end user. As teams work through the product backlog, it becomes crucial to confirm the user stories to ensure they meet the desired criteria and are ready for development. In this blog post, we’ll explore the concept of Scrum user stories confirmation and its significance in delivering high-quality products.

Code

The Power of Conversations in Scrum User Stories

At the heart of Scrum lies the concept of user stories, which serve as a means of capturing requirements from the perspective of end-users. However, the true power of user stories lies not just in their written form but also in the conversations that take place around them. In this blog post, we will explore the significance of conversations in Scrum user stories and how they contribute to the success of Agile projects.

Do You Want To Boost Your Business?

drop us a line and keep in touch

Scroll to Top
small_c_popup.png

Need help?

Let's have a chat...


Login

Jump Back In!

Here at Webolution Designs, we love to learn. This includes sharing things we have learned with you. 

Register

Begin Your Learning Journey Today!

Come back inside to continue your learning journey.