Mozilla VPN is currently experiencing an outage. Our team is actively working to resolve the issue. Please check the status page for real-time updates. Thank you for your patience.

Questo sito potrebbe offrire funzionalità limitate durante le operazioni di manutenzione per migliorare l'esperienza utente. Se un articolo non risolve il tuo problema e vuoi richiedere supporto, la nostra comunità di supporto è pronta ad aiutarti tramite @FirefoxSupport su Twitter e /r/firefox su Reddit.

Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Ulteriori informazioni

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

If there are two tabs and the second tab opens on clicking a button in first tab.The second tab if already open does't get focus.

more options

On clicking a button open a new tab and if the tab is already open then on clicking the button again the opened tab should get focus but it doesn't get focus.

On clicking a button open a new tab and if the tab is already open then on clicking the button again the opened tab should get focus but it doesn't get focus.

Tutte le risposte (7)

more options

Is the link/button a window.open() that (re)uses a named window, such as

window.open('app.html', 'appwindow');

On the first use, with the default settings, Firefox needs to DIVERT the new window to a new tab instead. By default, Firefox gives that new tab focus.

On the second load, Firefox does NOT need to open either a new window or a new tab, it only needs to launch a page in the existing tab. So I don't think these two preferences apply to that process:

(1) In a new tab, type or paste about:config in the address bar and press Enter/Return. Click the button promising to be careful or accepting the risk.

(2) In the search box above the list, type or paste inback and pause while the list is filtered

  • browser.tabs.loadInBackground has a default value of true
  • browser.tabs.loadDivertedInBackground has a default value of false

Changing that first one to false didn't affect this problem for me.

If you are the application developer and you want the page to get the focus, you could look at something like https://developer.mozilla.org/docs/Web/API/Window/focus to see whether that works for you.

See also: Where to go for developer support

more options

did the chnage you suggested but it didn't resolve my issue

more options

Yes, I said I tested that change and it didn't have any effect. So then I wrote:

jscher2000 said

If you are the application developer and you want the page to get the focus, you could look at something like https://developer.mozilla.org/docs/Web/API/Window/focus to see whether that works for you. See also: Where to go for developer support

Are you the application developer, or do you need an end-user hack-around for that site?

more options

I am an application developer .Is there any solution ?

more options

Please try the two links I provided before.

more options

It didn't resolve my issue.

more options

If you posted a question on Stack Overflow, could you provide a link to it here for reference. If you didn't post there yet, please see the link in this article: Where to go for developer support.