open.window() resizable=no funktioniert nicht

BlubBlub

Mitglied
HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">

<html>
	<head>
		<title> MySiteStarter</title>

		<script type="text/javascript">
		<!--
			function doIt()
			{
				alert('Hallo');
			}

			function loadIt()
			{
				window.open('HTMLseite.html', 'PopUp', 'width=300,height=400,left=100,top=200, location=no, resizable=no')
			}
		 //-->
		</script>
	</head>

	<body>

		<input type="button" value="doIt()" onclick="doIt()">
		<input type="button" value="loadIt()" onclick="loadIt()">
		<input type="button" value="js:window.open" onclick="window.open('HTMLseite.html', 'PopUp', 'width=300,height=400,left=100,top=200')">
		<input type="button" value="alert" onclick="alert('Hallo')">
		<input type="button" name="Knopf" value="Dr&uuml;ck mich!" onClick="alert('Hallo Welt!')">
	</body>
</html>


Nun hab ich in der Objektreferenz von selfHTML http://de.selfhtml.org/javascript/objekt...w.htm#open geschaut, wie man bei dem sich öffnenden Fenster mittels window.open() festlegen kann, dass die Größe nicht verändert werden kann. Folgendermaßen müßte es laut der Objektreferenz gehen:

window.open('HTMLseite.html', 'PopUp', 'width=300,height=400,left=100,top=200, location=no, resizable=no')

wieso funktioniert es aber nicht?
Ich verwende den Firefox 3.6.13
 
https://developer.mozilla.org/en/DOM/window.open

Note: Starting with version 1.4, Mozilla-based browsers have a window resizing grippy at the right end of the status bar, this ensures that users can resize the browser window even if the web author requested this secondary window to be non-resizable. In such case, the maximize/restore icon in the window's titlebar will be disabled and the window's borders won't allow resizing but the window will still be resizable via that grippy in the status bar.

Starting with Firefox 3, secondary windows are always resizable
 
Okay danke, das erklärt alles, zudem weiß ich jetzt auch warum location auch nicht funktioniert, steht ebenfalls auf der Seite die du verlinkt hast. Stellt sich mir nur noch die Frage, wie ich es in Firefox schaffen kann, dass die resizable funktionalität möglicherweise auf anderem Wege realsisierbar wird.
 
Eventuell kannst du mit onresize und window.resizeTo was basteln.
Würde mich aber nicht wundern, wenn das auch nicht funktioniert. Das ist ja aus gutem Grund so gemacht. Mich würde es als Besucher nerven, wenn das Teil eine feste Größe hat. Was ist, wenn der Inhalt über den Rand geht? Du kennst ja nicht die Schrifteinstellungen des Besuchers.
 
Zurück