Results 1 to 3 of 3

Thread: Submit form by pressing enter

  1. #1
    Join Date
    Jan 2006
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Submit form by pressing enter

    Hi there. I'm using the code below to execute a javascript function when a correct password is entered into a textbox. It works fine when the button is clicked, but not if users type in the password and then press 'enter'... is there some way I can get this to work?

    Code:
                <FORM ACTION="#" NAME=verify> 
                  <input id="photos" type=password size=10> 
    		&nbsp;&nbsp; 
                  <input type="button" value="click" onclick="javascript:Check()"> 
                </FORM> 
                <SCRIPT TYPE="TEXT/JAVASCRIPT">
    	    document.verify.photos.focus()
    	    </SCRIPT>
    The page is here.

  2. #2
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Code:
    <form action="#" name="verify" onsubmit="Check();return false;">
      <input id="photos" type="password" size="10">
      &nbsp;&nbsp;
      <input type="submit" value="click">
    </form>
    <script type="text/javascript">
      document.forms['verify'].elements['photos'].focus();
    </script>
    You shouldn't use document.name. Instead, document.getElementsByName(), document.getElementById(), and (in some cases) document.forms['name'] and document.images['name'] are available.
    Also, you shouldn't include javascript: pseudo-protocol indicators in event handlers.
    Last edited by Twey; 01-26-2006 at 07:59 PM.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  3. #3
    Join Date
    Jan 2006
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Works like a charm, thanks.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •