Este site irá ter funcionalidade limitada enquanto fazemos manutenção para melhorar a sua experiência. Se um artigo não resolve o seu problema e quiser colocar uma questão, temos a nossa comunidade de apoio à espera de o ajudar em @FirefoxSupport no Twitter, /r/firefox no Reddit.

Pesquisar no apoio

Evite burlas no apoio. Nunca iremos solicitar que telefone ou envie uma mensagem de texto para um número de telefone ou que partilhe informações pessoais. Por favor, reporte atividades suspeitas utilizando a opção "Reportar abuso".

Saber mais

When I open a new tab using JS, some browser history is kept. How to remove it?

more options

I'm developing a web application and the users can access the system using both Firefox and Chrome. There are some menus that, when the users selects an option a new tab opens, displaying the desired page. The new page is opened using JavaScript: `window.open(<desiredPage>, '_blank')`. In Chrome the new tab has no history, meaning the user cannot go back using the browser's backward button. In Firefox, in the exact moment the tab opens, there are pages in the history, meaning that the user could go back. How to prevent this behavior?

Thanks in advance.

I'm developing a web application and the users can access the system using both Firefox and Chrome. There are some menus that, when the users selects an option a new tab opens, displaying the desired page. The new page is opened using JavaScript: `window.open(<desiredPage>, '_blank')`. In Chrome the new tab has no history, meaning the user cannot go back using the browser's backward button. In Firefox, in the exact moment the tab opens, there are pages in the history, meaning that the user could go back. How to prevent this behavior? Thanks in advance.

Todas as respostas (2)

more options

Hi, I'm redirecting your topic to your language, please wait for the response from one of the valued ones in your region.

more options

There should not be history on a new window or tab launched using window.open(). I have no idea how that is happening on your Firefox.

What if you test on other sites? Does it happen everywhere? For example, if I use the Inspector tool to modify one of the links on a page with this additional attribute (using right-click > Edit as HTML in the Inspector) --

onclick="window.open(location.href, '_blank'); return false;"

-- I get a new tab that doesn't have history.

Is it possible you have an extension related to duplicating tabs that is affecting new tabs?