Open window on button click

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Ben

    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
  • Jason

    #2
    Re: Open window on button click

    "Ben" <microben@hotma il.com> wrote in message
    news:3b62f09e.0 309301537.2923f 6a0@posting.goo gle.com...[color=blue]
    > 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
    >[/color]

    You need to use a client side scripting language to open a window.


    Comment

    • Jon Kraft

      #3
      Re: Open window on button click

      Ben <microben@hotma il.com> wrote:
      [color=blue]
      > 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 ?[/color]

      Example:

      <form action="specifi ed.url" target="_blank" >
      <input type=submit value="Open Window">
      </form>

      JOn

      Comment

      • Jason

        #4
        Re: Open window on button click

        "Jon Kraft" <jon@jonux.co.u k> wrote in message
        news:ble3jl$afe l9$2@ID-175424.news.uni-berlin.de...[color=blue]
        > Ben <microben@hotma il.com> wrote:
        >[color=green]
        > > 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 ?[/color]
        >
        > Example:
        >
        > <form action="specifi ed.url" target="_blank" >
        > <input type=submit value="Open Window">
        > </form>
        >
        > JOn
        >[/color]

        I didn't even think of that. Cool :)


        Comment

        Working...