Popup Resizable mit Firefox

bandsite

Mitglied
Hallo,
Ich habe ein Javascript, daß es mir ermöglicht ein Popup Fenster zu öffnen. Es ist festgelegt, daß sich das Fenster nicht in der Größe verändern lässt. Im IE funktioniert das auch, aber der Fireofx unterbindet das berändern der Fenstergröße nicht.

Kann man da was machen ?

Code:
<script language="JavaScript">
function PopUp()
{
var URL = "trackerstart.php";			
var Name = "popup";
var Fensteroptionen = "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0";
var Breite = 720;
var Hoehe = 480;
window.open(URL, 'BoardTracker', Fensteroptionen + ',width=' + Breite + ',height=' + Hoehe);
}
</script>

Danke, bandsite
 
So ziemlich gar nix und das ist auch gut so, denn ich will Fenster ändern können, wie ich will. Du könntest allerdgins mit JavaScript die Größe ständig überwachen und bei Änderung einfach die Alte wieder herstellen.
 
Zuletzt bearbeitet:
Zitat ausgeborgt von http://www.mozilla.org/docs/dom/domref/dom_window_ref76.html#grpPositionSizeFeat
Mozilla hat gesagt.:
Window functionality features

resizable

If this feature is set to yes, then it will make the new secondary window resizable.

Note: Mozilla-based browsers since version 1.4 will have a window resizing grippy at the right end of the status bar; this is to assure users that they can resize a browser window even when the web author explicitly or implicitly requested to make such secondary window non-resizable. In such case, the maximize/restore down system command icon in the titlebar will be disabled and window resizing borders will be unresponsive but the window will still be resizable via that window resizing grippy in the status bar.
 
was nuetzt ein popup wenn mit FF immer jeder sein popup blocker benutzt?
wie waers denn mit nem DIV oder IFRAME den du in ein popup umfunktioniertst?
 
Der/ein Popupblocker blockt ja nicht generell alle neuen Fenster, sondern idR. nur jene, welche ohne Benutzeraktion geöffnet werden.
 
Sven Mintel hat gesagt.:
Der/ein Popupblocker blockt ja nicht generell alle neuen Fenster, sondern idR. nur jene, welche ohne Benutzeraktion geöffnet werden.
das habe ich vorausgesetzt. Viele popups sind fuer reklame und werden ungewollt geoeffnet.
 

Neue Beiträge

Zurück