Quick 'window.open' Question . . . [RESOLVED]
Syntax please, to open a browser with no address bar, no status bar, but only a menu bar.
Does the URL or location of the page I want to open go into the first '' ?
It's something like this:
Code:
'javascript:
window.open('','NewWin','toolbar=no,status=no,
width=100px,height=100px,resizable=no,scrollbars=no,
top=100px,left=200px');
BONUS QUESTION: Maybe it's possible to even reduce the menu down to only allow "PRINT" and "EXIT" to show?
Thanks,
CP
Re: Quick 'window.open' Question . . .
I moved your thread to the "javascript" section.
ØØ
Re: Quick 'window.open' Question . . .
Re: Quick 'window.open' Question . . .
Yes, the first argument is the URL. window.open()
Re: Quick 'window.open' Question . . .
Then I want to close the window with the script...hopefully, so it's never even seen.
Is it something like :
this.close();
Thanks,
CP
Re: Quick 'window.open' Question . . .
Re: Quick 'window.open' Question . . .