I know that I can open html links in a new window by using target="_blank", but how can I hide/disable all the browser toolbars ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You should use |
|||||
|
window.open('your url here','name','toolbar=0,status=0');
With Javascript. But it's better and usable, if you create a fake window with javascript. |
|||||||
|
|
I suppose the only way to do that is to use the JavaScript Window.open function. I don't know of any HTML/CSS-only way of hiding browser controls. |
|||
|
|
|
Don't do that. Seriously. It's one of the better ways to drive away users. |
|||||||||
|