Om de ûnderfining foar jo te ferbetterjen is tydlik de funksjonaliteit dan dizze website troch ûnderhâldswurk beheind. Wannear in artikel jo probleem net oplost en jo in fraach stelle wolle, kin ús stipemienskip jo helpe yn @FirefoxSupport op Twitter en /r/firefox op Reddit.

Sykje yn Support

Mij stipescams. Wy sille jo nea freegje in telefoannûmer te beljen, der in sms nei ta te stjoeren of persoanlike gegevens te dielen. Meld fertochte aktiviteit mei de opsje ‘Misbrûk melde’.

Mear ynfo

Dizze konversaasje is argivearre. Stel in nije fraach as jo help nedich hawwe.

The yellow popup information bar appears and quickly disappears before I can click it

  • 8 antwurd
  • 5 hawwe dit probleem
  • 1 werjefte
  • Lêste antwurd fan benihana21

more options

Normally when a popup is blocked, the yellow information bar appears at the top of the viewport and persists so the user can click it and manage his popup exceptions. Starting in Firefox 22, the information bar, along with the popup icon on the right in the URL bar appear, but quickly disappear, making it impossible to click on either to manage my popup exceptions.

I realize that other ways exist to add popup exceptions, but I'm a programmer and the site I'm working on gives our users instructions to add popup exceptions by using the yellow popup information bar.

Normally when a popup is blocked, the yellow information bar appears at the top of the viewport and persists so the user can click it and manage his popup exceptions. Starting in Firefox 22, the information bar, along with the popup icon on the right in the URL bar appear, but quickly disappear, making it impossible to click on either to manage my popup exceptions. I realize that other ways exist to add popup exceptions, but I'm a programmer and the site I'm working on gives our users instructions to add popup exceptions by using the yellow popup information bar.

Keazen oplossing

Firefox may be removing the infobar in response to something else the script does after attempting to open the popup. Can you post a URL to the actual page, or to a stripped down page that demonstrates the problem?

Dit antwurd yn kontekst lêze 👍 0

Alle antwurden (8)

more options

Don't you get a pop-up block icon on the location bar?

more options

Yes, I do get the pop-up icon in the location bar, but it disappears just as quickly as the yellow pop-up blocker information bar.

more options

Start Firefox in Safe Mode to check if one of the extensions (Firefox/Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Firefox/Tools > Add-ons > Appearance).

  • Do NOT click the Reset button on the Safe Mode start window.
more options

Thanks for the information about Safe Mode, but unfortunately that didn't resolve the issue.

more options

Keazen oplossing

Firefox may be removing the infobar in response to something else the script does after attempting to open the popup. Can you post a URL to the actual page, or to a stripped down page that demonstrates the problem?

more options

jscher2000, thank you so much for the push in the right direction!

The following code was causing Firefox to retract the popup bar:

var win = window.open("NewPage.html"); win.focus();

The focus() function was taking focus from the parent window, thus eliminating the popup bar.

more options

Hi benihana21, I wonder whether you can retain that feature for others by checking that the window exists? I haven't tried to test this:

var win = window.open("NewPage.html"); if (win) win.focus();
more options

Yes! That does work, and is indeed the best solution. Thank you.