Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

Learn More

Firefox 73.0: javascript function window.open()

  • 3 απαντήσεις
  • 1 έχει αυτό το πρόβλημα
  • 105 προβολές
  • Τελευταία απάντηση από Pastis

more options

Height and width does not work as before. Open smaller window...

Example:

function PopUpWin(source,name,width,height) {

 window.open(source, name,"location=0,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,width="+width+",height="+height+"");

}

Height and width does not work as before. Open smaller window... Example: function PopUpWin(source,name,width,height) { window.open(source, name,"location=0,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,width="+width+",height="+height+""); }

Επιλεγμένη λύση

I disable the plugin (had 90% zoom as default) and set the new Default Zoom setting to 90% in the Options/Preferences page and it solved my problems! Thank you!

Ανάγνωση απάντησης σε πλαίσιο 👍 0

Όλες οι απαντήσεις (3)

more options

The problem is the plugin "Default zoom" for Firefox...

more options

Hi Pastis, the height and width set in window.open() are adjusted according to your global zoom level. Firefox 73 introduced a Default Zoom setting on the Options/Preferences page, which could involve internal code changes that affect this issue.

Do you recall any changes that you or an add-on might have made to the Default Zoom setting?

For experimenting:

I have a test page that generates a nominal 800x600 popup window (third link):

https://www.jeffersonscher.com/res/popit.html

What Firefox considers Default Zoom of 100% actually shows me the Windows default of 125%, so the popup window is enlarged proportionately. If I set the Default Zoom in Firefox to 80% to cancel out the Windows default of 125%, then the popup is sized as requested, plus borders and toolbars.

more options

Επιλεγμένη λύση

I disable the plugin (had 90% zoom as default) and set the new Default Zoom setting to 90% in the Options/Preferences page and it solved my problems! Thank you!