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.
<body onload="document.getElementById('objektid').style.overflow = 'hidden';">
<!doctype html>
<html>
<head>
<title></title>
<style type="text/css">
.js #js{ /* JS ist an */
display:block;
}
#js{
display:none;
}
</style>
</head>
<body>
<div id="js">Javascript an.</div>
<script type="text/javascript">
document.body.className += ' js';
</script>
</body>
</html>