I just switched to FireFox 3 and I noticed that all my custom popup windows now contain the location "Address" box even though this is not one of the features of the window. see sample code below. Does anybody know how to suppress this?
Code:
function getSearchWindow() {
testWindow =window.open('testSearch.html',
'searchWindow',
'scrollbars,resizable,height=200,width=400');
testWindow.focus();
return false;
}
Comment