Hi Folks! I have been working on a web app and for part of it I need to open a new window. I have this working on all browsers, my sticking point is with Google Chrome. Chrome seems to ignore the window features which is causing me issues, the thing I'm struggling with is I need the address bar to be editable within the new window. FF, IE, Safari and Opera do this fine, Chrome does not. My Code: <script type="text/javascript"> <!-- function popitup(url) { newwindow=window.open(url,'name','toolbar=1,scrollbars=1,location=1,status=1,menubar=1,resizable=1,width=800,height=600'); if (window.focus) {newwindow.focus()} return false; } // --> </script> Code (markup): Any help would be gratefully received! Thanks in advance
Don't know why but you just can't popup window with full features in google chrome. Why don't just open new window in tab instead of poping it up? Hendra
because in a new tab you cannot control the size of the browser window, which it the basis of the app itself. Thanks anyway