Hallo allerseits,
ich möchte ein Popupfenster erstellen welches ich über einen Desktoplink aurfufe.
"C:\Program Files\Mozilla Firefox\firefox.exe" --ssb C:\Users\casi\Documents\\soundboard.htm. Mein Problem: Er soll nicht zusätzlich noch ein Browserfenster gleichen Inhalts öffnen und die Adresszeile soll auch noch weg, was mache ich falsch
lg
chris
Als code habe ich dieses hier:
HTML
<!DOCTYPE HTML>
<html>
<head>
<title>Audio</title>
</head>
<script type="text/javascript">
if(window.name != "mypopup") {
window.open(document.location.href,'mypopup', 'left=300,top=200,width=400,height=200,toolbar=0,status=0,location=0,menubar=0,scrollbars=0,titlebar=0');
window.open('', '_self', ''); // chrome bug
window.close();
}
</script>
<body>
Popup Code
</body>
</html>
Alles anzeigen