Reputation: 26565
Is there a way to open ( via javascript ) a new window but without toolbar, addressbar, etc ?
I have tested this code:
window.open('http://example.it','example','height=300px,width=724px,resizable=1,alwaysRaised=1,location=1,links=0,scrollbars=0,toolbar=0');
but in Opera, it shows the bookmarks bar and the address bar.
Upvotes: 0
Views: 4933
Reputation: 11004
Opera doesn't support hiding the bookmark or address bar. Here is one site that documents this, although it look old. A quick search brings up a lot of browser quirks with window.open(), and unfortunately, there probably aren't any workarounds since opening a window a certain way is strictly controlled by the browser.
Edit: I just found a page on the site I posted that says "Last update: April 28th 2012", so maybe the tacky old 90s look is just for fun.
Upvotes: 1