How to stop a form from submitting when enter is pressed.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • shivendravikramsingh
    New Member
    • Jun 2007
    • 19

    How to stop a form from submitting when enter is pressed.

    hi friends,i m facing a problem,when i press enter, the page has redirected to another page,which is given in <form method="get" action="get_ord er">.
    Last edited by pbmods; Jun 25 '07, 12:59 PM. Reason: Made the question a little more clear.
  • shoonya
    New Member
    • May 2007
    • 160

    #2
    can you explain your problem a bit ??
    your title and question doesn't co relate

    shoonya

    Comment

    • Purple
      Recognized Expert Contributor
      • May 2007
      • 404

      #3
      Hi shivendravikram singh,

      try this:

      [HTML]<form method="get" action="get_ord er" onKeyPress="nul lEnter()">[/HTML]

      with this

      Code:
      function nullEnter(){
          if(event.keyCode==13)
      		{
              event.keyCode = null;
              return;
          	}
      }
      Regards

      Purple

      Comment

      • shivendravikramsingh
        New Member
        • Jun 2007
        • 19

        #4
        thanks,my problem is solved.

        Comment

        • Atli
          Recognized Expert Expert
          • Nov 2006
          • 5062

          #5
          I have edited the thread's title to better describe it's contents.

          Moderator

          Comment

          Working...