Remove Address bar from popup window using Javascript

asp.net, asp.net-mvc, javascript, jquery

Solution

Theoretically, yes. However, as with everything in Javascript, there's no guarantee that any given browser will support it or that the implementation will be consistent across browsers.

This link as well as this link indicate that the `location` option should control whether or not the Location/Address bar is shown. It should also have relatively good cross-browser support.

Problem

Is it applicable to remove the address bar from a popup window using javascript ex: ``` window.open(url, 'liveMatches', 'width=720,height=800,toolbar=0,location=0, directories=0, status=0, menubar=0'); ``` please advice,

Original source