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.
document.getElementById('divid').innerHTML = '<h1>Es funktioniert!</h1>';
<div id="divid"><p>irgend ein quatsch</p></div>
<a href="javascript:changeDiv();">link</a>
<script type="text/javascript">
function changeDiv() {
document.getElementById('divid').innerHTML = '<h1>Es funktioniert!</h1>';
}
</script>