Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

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.

All Replies (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?