Re: form submit

From: Roland Hall (nobody_at_nowhere)
Date: 08/07/04

  • Next message: Dave Anderson: "Re: Dependent dropdowns"
    Date: Sat, 7 Aug 2004 11:28:07 -0500
    
    

    "Roland Hall" <nobody@nowhere> wrote in message
    news:uICRzxIfEHA.236@tk2msftngp13.phx.gbl...
    : "Pakis" wrote in message news:eHynBQheEHA.3928@TK2MSFTNGP11.phx.gbl...
    : : I have a form tag in my page. I want that when enter key is pressed it
    : : should not submit the form. Ihave set action="" but no use.
    :
    : Another way is...
    :
    : If you change this:
    :
    : <input type="submit" value="Submit" />
    :
    : to:
    :
    : <input type="button" value="Submit" onclick="document.form.submit()" />
    :
    : it will only submit with the click of a mouse and not with Enter.
    :
    : There are still other ways to perform this too.

    form = form name


  • Next message: Dave Anderson: "Re: Dependent dropdowns"