Removing an address bar from a popup using Javascript

This is applicable to remove the address bar from a popup using javascript for example:

window.open(url, 'liveMatches', 'width=720,height=800,toolbar=0,location=0, directories=0, status=0, menubar=0'); 

please advice

+7
source share
2 answers
Theoretically, yes. However, like everything in Javascript, there is no guarantee that any browser will support it or that the implementation will be consistent between browsers.

This link , as well as this link, indicates that the location parameter should determine whether the Location / Address panel is displayed. It should also have relatively good cross browser support.

+4
source

use jquery ui ( http://jqueryui.com/demos/dialog/ )

or maybe

 window.open(url,'liveMatches','directories=no,titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=720,height=800'); 

in fact

You cannot delete the address bar in modern browsers. This is a safety measure. The user should always know which page they are on. The addresses also let the user know what type of security is on this page (HTTP or HTTPS).

+16
source

All Articles