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.
<div id="inhalt1">
hier ist der normale inhalt der beim öffnen der seite angzeigt wird.
darin soll ein link sein mit der option:
"zu alternativem inhalt wechseln" ->wenn man den link geklickt hat soll dann div inhalt2 aufgerufen werden und dieses hier "geschlossen".
</div>
<div id="inhalt2">
hier ist der alternative inhalt
</div>
function tausch(){
flashcontent=document.getElementById('flashcontent');
htmlcontent=document.getElementById('htmlcontent');
flashcontent.style.display='none';
htmlcontent.style.display='block';
}