ssam
ssam

Reputation: 239

How to open a browser window without any bars like address bars, bookmarks bars etc in javascript?

I am looking to open a url (html file) without any kind of address bars, bookmarks bar so that the user just sees the application window. Is there a way to do so?

Upvotes: 21

Views: 65547

Answers (1)

cbender
cbender

Reputation: 2251

window.open(url,'window','toolbar=no, menubar=no, resizable=yes');

You can read about these and more of the options here.

Upvotes: 37

Related Questions