Hi,
I'm having issues setting the size of a popup and disabling the location bar in Google Chrome. I'm using the following:
window.open( "site.html", "site", "top=50,left=50,width=20,height=50,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=no" );
Chrome doesn't resize the window to the specified height and width, and also the location bar is still visible. Firefox resizes the window to the appropriate height/width, but also shows the location bar.
Is there something wrong with the code that i'm using in order to make a new popup window with a fixed width/height that has the location bar, menu bar, scroll bar, status bars disabled?