Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Local storage demo</title>
<style type="text/css">
.myclass { background-color: #fcc; }
</style>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
(function bindEvents()
{
$('#demo').click(function () {
localStorage.setItem('bodyClass', 'myclass');
location.reload();
});
$('#reset').click(function () {
localStorage.clear();
location.reload();
})
})();
var myClass = localStorage.getItem('bodyClass');
if (myClass !== null) {
$('body').addClass(myClass);
}
});
</script>
</head>
<body>
<button id="demo">Store class</button>
<button id="reset">Reset</button>
</body>
</html>