A
Arktis666
Hi!
ich habe diesen Code hier um ein neues Fenster ohne Rahmen zu öffnen:
Ich rufe das Fenster mit diesem Link auf:
Aber der Scrollbalken ist trotzdem *inaktiv* zu sehen und dann sieht das sch**** aus! ;-)
Weiss einer warum?
Danke schoen!
ich habe diesen Code hier um ein neues Fenster ohne Rahmen zu öffnen:
Code:
<script>
function player() {
// Here resize the PopUp
var popUpSizeX=440;
var popUpSizeY=120;
// Here move it to any poiny on screen
var popUpLocationX=0;
var popUpLocationY=0;
// URL of the popUp
var popUpURL="player.html";
splashWin = window.open("",'x','fullscreen=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=0');
splashWin.blur();
window.focus();
splashWin.resizeTo(popUpSizeX,popUpSizeY);
splashWin.moveTo(popUpLocationX,popUpLocationY);
splashWin.location=popUpURL;
splashWin.focus();
}
</script>
Ich rufe das Fenster mit diesem Link auf:
Code:
<a href="#" target="_self" onclick="player()">Oeffnen</a>
Aber der Scrollbalken ist trotzdem *inaktiv* zu sehen und dann sieht das sch**** aus! ;-)
Weiss einer warum?
Danke schoen!