Wnn es mit ein iframe nicht klappt , dann ist hier noch eine Alternative:
http://www.gipspferd.de/css/anleitung/a8/a8.php
http://www.gipspferd.de/css/anleitung/a8/a8.php
Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<div id="content">
<script language="javascript" type="text/javascript">
function hoehe() {
if(document.readyState != "complete") {
window.setTimeout(hoehe, 100);
return false;
}
document.getElementById("iframe").style.height = (document.getElementById("iframe").contentWindow.document.getElementById("tplIndex").offsetHeight + 50);
}
</script>
<body onload="hoehe();">
<iframe id="iframe" frameborder="0" scrolling="auto" src="http://terados.de/Forum/index.php" style="width: 100%; height: auto;"></iframe>
<div id="post-navigator"></div>
</div>
Script im Head-Bereich
<script type="text/javascript">
function hoehe() {
document.getElementById("myframe").height = document.getElementById("myframe").contentWindow.document.body.offsetHeight;
}
</script>
Im Body-Bereich
<iframe src="url" id="myframe" width="960" marginheight="0px" marginwidth="0px" frameborder="0" scrolling="no" onload="hoehe()"; >