Reputation: 12421
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
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