Ask a Question related to PHP Development, Design and Development.
-
Ben #1
Open window on button click
Hi there,
in a form, here's what I want to do :
<input type=button onclick= (???)
is it possible to open a pop-up window with a specified url without
using javascript ?
Thanks
Ben
Ben Guest
-
Click thumbnails, open in new window
I apologize, because I know this has probably been asked before but I still need a bit of a push. :( I'm making an e-portfolio in Director MX. It... -
want to open a new window on button click!-jscript or javasript
Hi all... I am able to select a student's story and open it in a word doc. the teacher then corrects the story, highlight in colors the comments,... -
Server control button click: open pop up browser window
Checkout ... ShowModalDialog in the javascript reference. It works quite will if you want to use client side javascript. "Alvin Bruney"... -
Button click on Web Dialog opens its copy in new window
I have an aspx page which I open using the following code fragment below. The modal web dialog has 2 buttons and whenever I click any of them, a new... -
Close a window after button click
The user clicks a buuton and the server does some processing. If successful I want to close the window. Any suggestions? Steve -
Jason #2
Re: Open window on button click
"Ben" <microben@hotmail.com> wrote in message
news:3b62f09e.0309301537.2923f6a0@posting.google.c om...You need to use a client side scripting language to open a window.> Hi there,
>
> in a form, here's what I want to do :
>
> <input type=button onclick= (???)
>
> is it possible to open a pop-up window with a specified url without
> using javascript ?
>
> Thanks
>
> Ben
>
Jason Guest
-
Jon Kraft #3
Re: Open window on button click
Ben <microben@hotmail.com> wrote:
Example:> in a form, here's what I want to do :
>
> <input type=button onclick= (???)
>
> is it possible to open a pop-up window with a specified url without
> using javascript ?
<form action="specified.url" target="_blank">
<input type=submit value="Open Window">
</form>
JOn
Jon Kraft Guest
-
Jason #4
Re: Open window on button click
"Jon Kraft" <jon@jonux.co.uk> wrote in message
news:ble3jl$afel9$2@ID-175424.news.uni-berlin.de...I didn't even think of that. Cool :)> Ben <microben@hotmail.com> wrote:
>>> > in a form, here's what I want to do :
> >
> > <input type=button onclick= (???)
> >
> > is it possible to open a pop-up window with a specified url without
> > using javascript ?
> Example:
>
> <form action="specified.url" target="_blank">
> <input type=submit value="Open Window">
> </form>
>
> JOn
>
Jason Guest
-
syam #5
Re: Open window on button click
<form name="a" method="post" action="b.php" target="_blank">
the right answer which i'm looking for, great!!!syam Guest



Reply With Quote

