Open html link in a new window without browser toolbars

I know that I can open html links in a new window using target = "_ blank", but how can I hide / disable all browser toolbars?

+4
source share
4 answers

You should use window.open('url to open','window name','toolbar=no');

+8
source

  window.open ('your url here', 'name', 'toolbar = 0, status = 0');

With Javascript. But it is better and useful if you create a fake window with javascript.

+1
source

I believe the only way to do this is to use the JavaScript function Window.open. I do not know any HTML / CSS method for hiding browser controls.

0
source

Do not do this. Jokes aside. This is one of the best ways to remove users.

0
source

Source: https://habr.com/ru/post/1285787/


All Articles