what about inline pop-ups? You can write your own code or see this: http://docs.jquery.com/UI/Dialog.

I dont use standard window.open javascript function at all, as in IE 8 it's IMHO impossible to hide location bar.

Inline (I mean html) dialogs have more features than window.open.

Hope it helps.

Answer from Feryt on Stack Overflow
🌐
MDN Web Docs
developer.mozilla.org › en-US › docs › Web › API › Window › open
Window: open() method - Web APIs | MDN
A string containing a comma-separated list of window features in the form name=value. Boolean values can be set to true using one of: name, name=yes, name=true, or name=n where n is any non-zero integer. These features include options such as the window's default size and position, whether or not to open a minimal popup window, and so forth.
🌐
Mozilla Bugzilla
bugzilla.mozilla.org › show_bug.cgi
445542 - javascript; window.open; location=no; the location is visible at the top of the window
User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9) Gecko/2008061004 Firefox/3.0 Build Identifier: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9) Gecko/2008061004 Firefox/3.0 the following should open a second window without a locationbar however with firefox3, the location is visible and editable <html> <head> <script language="javascript"> function openwindow() { var myWin=window.open("http://www.mozilla.com", "mozilla", "location=no,status=yes"); if (myWin) myWin.focus(); } </script> </head> <body onload="openwindow();"> </body> </html> Reproducible: Always Steps to Reproduce: 1.
🌐
W3Schools
w3schools.com › jsref › met_win_open.asp
Window open() Method
The open() method opens a new browser window, or a new tab, depending on your browser settings and the parameter values.
🌐
SitePoint
sitepoint.com › javascript
Location=no but still i see addressbar - JavaScript
April 1, 2010 - hey all, i m working a web app in which i wanna remove the address bar after login. i created a function in which i said location=no but still i see the address bar. is there any other object to disable it? or am i doin…
🌐
HTML Goodies
htmlgoodies.com › home › javascript
Window Open | Javascript Popup Windows | HTML Goodies
April 27, 2021 - resizable=nodenotes if the user can change the size of the window by dragging or not. location=no denotes if there will be a location bar on the newly opened window. Use yes and no again.
🌐
GitHub
github.com › whatwg › html › issues › 2047
Make window.opener.location read-only in cross-origin situations · Issue #2047 · whatwg/html
November 15, 2016 - Furthermore, I know of no legitimate use cases for a child page to be able to force a navigation in the parent, and I would consider it horrible user experience. I propose that window.opener.location be made read-only in pages that are from a different origin from the opening page.
Author   DemiMarie
🌐
JavaScript.info
javascript.info › tutorial › frames and windows
Popups and window methods
Usually a notification appears, so that a user may allow them. Browsers open a new tab by default, but if sizes are provided, then it’ll be a popup window. The popup may access the opener window using the window.opener property. The main window and the popup can freely read and modify each other if they have the same origin. Otherwise, they can change location of each other and exchange messages.
Find elsewhere
🌐
Data
deep.data.blog › 2011 › 02 › 08 › window-open-without-address-bar
window.open without address bar | Arvind Shyamsundar's technical blog
February 8, 2011 - Recently we were struggling with trying to figure out how to suppress the address bar for a popup window opened using JavaScript’s window.open method. Normally, there is an option there which allows you to specify ‘location=no’ and the address bar is expected to be hidden.
🌐
HTML Standard
html.spec.whatwg.org › multipage › nav-history-apis.html
Named access on the Window object
1 week ago - By default, scripts can access their opener browsing context's Window object through the window.opener getter. E.g., a script can set window.opener.location, causing the opener browsing context to navigate. ... Let navigable be this's navigable. If navigable is null, then return null. If navigable's parent is not null, then set navigable to navigable's parent.
🌐
Microsoft Learn
learn.microsoft.com › en-us › answers › questions › 983480 › window-open-and-hiding-url-in-edge-using-i-e-mode
Window.open and hiding URL in Edge using I.E. mode - Microsoft Q&A
August 26, 2022 - The users have to run Edge in I.E. mode for it to be usable. We use the Javascript Window.Open method to open our pop-up pages. For security, we cannot have the popup URL displayed. Since being saddled with Edge, we can no longer hide the URL. It seems that Edge ignore the Spec options like toobar=no or location=no.
🌐
ServiceNow Community
servicenow.com › community › developer-forum › how-do-you-open-a-new-browser-window-in-a-popup-from-a-record › m-p › 2051003
How do you open a new browser window in a popup fr... - ServiceNow Community
June 1, 2018 - <p class="plus"><a style="text-decoration:none; color:#ffffff;" onclick="window.open('/cms/phone.do', '_blank', 'location=no,toolbar=no,menubar=no,scrollbars=yes,width=760,height=730'); return false;" href="#">
🌐
W3Schools
w3schools.com › js › js_window_location.asp
JavaScript Window Location
The window.location object can be written without the window prefix.
🌐
Moodle
moodle.org › mod › forum › discuss.php
Moodle in English: Pop-up window without the address bar | Moodle.org
June 3, 2020 - <p><a href="#" onclick="window.open('https://xxx/', 'winname', 'directories=no,titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=800,height=600');return false;">Click here</a></p> Thanks · Average of ratings: - Permalink Reply ·
🌐
CodeProject
codeproject.com › Questions › 444796 › open-new-window-with-no-address-bar-in-javascript
https://www.codeproject.com/Questions/444796/open-...
Do not try and find the page. That’s impossible. Instead only try to realise the truth - For those who code; Updated: 1 Jul 2007