I want to open a popup window with minimal decoration. I tried the following code:
<script>
newwindow =
window.open('http://jquery.com','name',
'height=300px,width=400px,scrollbars=no');
if (window.focus) {newwindow.focus()}
</script>
Some decorations(menu bar,scroll bar,..) have been gone. But some decorations are still exist(title bar, address bar).
How to remove all the decorations? I want a cross-browser solution.