Ashwin
Ashwin

Reputation: 12421

javascript new window location parameter not working as expected

javascript window.open parameter location does not work.

I do not want to show address bar in the new window.

jsbin example - http://jsbin.com/ucusiq/1/edit

Upvotes: 0

Views: 120

Answers (1)

cyber_rookie
cyber_rookie

Reputation: 665

Yes, mram888 is right. Show it as a popup. Use a script on the lines of the following:

window.open('/location.html','windowName','directories=0,titlebar=0,toolbar=0,location=0,status=0,menubar=0,scrollbars=no,resizable=no,width=400,height=350');

Upvotes: 1

Related Questions