All you have to do is add
<script></script>
into your html file between which you can use the following code. Store the item in local storage with
localStorage.setItem('name', 'tom');
Restore it with
var name = localStorage.getItem('name');
source
share