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?
Solution 1:
window.open(url,'window','toolbar=no, menubar=no, resizable=yes');
You can read about these and more of the options here.
Post a Comment for "How To Open A Browser Window Without Any Bars Like Address Bars, Bookmarks Bars Etc In Javascript?"