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.
<script type="text/javascript">
var PopUp;
</script>
<input type="button" value="PopUp öffnen!" onclick="PopUp= window.open('','webinterface','resizable=yes,fullscreen=yes,location=no');" />
<input type="button" value="Teste ob geöffnet!" onclick="alert(PopUp.document ? 'PopUp offen' : 'PopUp geschlossen')" />
function openWindow(){
alert(typeof win);
if(typeof win == 'undefined'){
document.writeln("Bitte erlauben Sie Pop-ups für diese Seite!");
}
else{
//win.location.href = "index.php";
//this.location.href = 'http://www.tutorials.de';
}
alert(win.document ? 'PopUp offen' : 'PopUp geschlossen')
}
</script>
<?
echo "<script type=\"text/javascript\">openWindow();</script>";
?>
win ist leider nicht vom Typ 'undefined' sondern 'object'.
win= window.open("http://www.google.at","win","resizable=yes,fullscreen=yes,location=no");
if(win == null){
//IE 8
alert('IE');
}
else if(win.document == undefined){
//safari 3.2.1
alert('Safari');
}
else if(win.document == undefined){
//google chrome 4
alert('Chrome');
}
else if(win == null){
//firefox 3.5.7
alert('Firefox');
}
else{
alert('OK');
}
try{
if(window.opera && typeof win.opera=='undefined')
{
alert('Opa hats geblockt');
}
}catch(e){}