Local Storage

Size
1,709 Kb
Views
20,240

How do I make an local storage?

What is a local storage? How do you make a local storage? This script and codes were developed by Bradley Engelhardt on 13 August 2022, Saturday.

Local Storage Previews

Local Storage - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Local Storage</title> <link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css'>
</head>
<body> <div class="container"> <br>
<div id="text"> <button class="btn btn-success" id="setStorage">set storage</button>
</div> <br> <button class="btn btn-danger" id="removeStorage">remove storage</button>
</div> <script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

Local Storage - Script Codes JS Codes

if(localStorage.getItem('buttonClicked') == 'true'){ $('#setStorage').hide(); $('#text').html("<p>Hey</p>"); }
$('#setStorage').click(function(){ localStorage.setItem('buttonClicked', 'true'); alert("The button was set to clicked and will disappear on refresh!");
})
$('#removeStorage').click(function(){ localStorage.setItem('buttonClicked', 'false'); alert("Button clicked was set to false, the button will reappear on page refresh!");
});
Local Storage - Script Codes
Local Storage - Script Codes
Home Page Home
Developer Bradley Engelhardt
Username SquishyAndroid
Uploaded August 13, 2022
Rating 3
Size 1,709 Kb
Views 20,240
Do you need developer help for Local Storage?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Bradley Engelhardt (SquishyAndroid) Script Codes
Create amazing love letters with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!