Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 574
ssam Avatar asked Jul 29 '15 20:07

ssam


1 Answers

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

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

like image 191
cbender Avatar answered Sep 30 '22 03:09

cbender