:Is there an alternative to:
:
: window.open( ?, ?, "....toolbar=no...")
:
:this will do it when opens the window, but can it be done by some HTML
:parameters etc in the page's code itself or with Java Script when the
page :is already open.
:
:I am not talking about how would the user configure it...
It has to be done on the client. You can't change an open window's
parameters with PHP. You can use "onClick=" inside an anchor to open a
new window with any parameters you want (but that's Javascript), and
then close the parent window; be aware that your user may have disabled
Javascript, or disallowed modification of some of the parameters you
want to change.
Javascript is more important now, I've found, since xhtml has outlawed
the "target" attribute of anchors.
I understand it has to be done on the client if Java, but I thought there
may be something in the <BODY ....> Tag or header that one can set...
I need to open a new window, a plain one like in windows programming, and
submit data from one window to the next.
To work like STD Windows type apps the only constrainst I have at the
moments is that I can't submit a form into a new window where I can
reconfigure the browser:
<input
onclick="window.open('Test.Html',null,'status=yes, toolbar=no,menubar=yes,loc
ation=no');" type="submit" value="Submit" name="B1">
If I do this, it will open the window as I wish, but will not submit at the
same time or I can do this:
<input type="button" value="submit" name="Use_Btn"
onclick="window.TEST_FORM.submit()">
this will submit and it I set the target in the form to "_new" I will have a
new window open, data submitted, but in a browser style.
this is my problem...:-(