tinks
tinks

Reputation: 1

WIndow.open in Javascript

I really need your help. I am working on a pop up window using JavaScript.

I am using the window.open(URL,name, properties);

I wanted to load a window that does not load the URL window. I tried the location=0 and location=no setting, it seems to work fin on Firefox but alas it is not working on IE!

In Firefox, it is not showing the location bar anymore, but in IE the location bar is still there with the URL!

Please help. :9

tinks~

Upvotes: 0

Views: 1003

Answers (2)

GorillaMoe
GorillaMoe

Reputation: 4134

Not possible anymore as all modern browsers do not allow you to hide the URL in Popups anymore :)

Upvotes: 0

TJHeuvel
TJHeuvel

Reputation: 12608

You seem to be calling the method correctly, IE most likely doesnt allow you to hide its url bar. Most browsers have user-defined preferences whether they want to allow websites to be able to hide toolbars. Popups are very susceptible to security options.

I'm afraid you'd have to live with it, if the user doesnt want you to hide the url it wont.

Upvotes: 1

Related Questions