Can someone please tell me how to submit an HTML form when the return key is pressed and if there are no buttons in the form? The submit button is not there. I am using a custom div instead of that.
|
1
|
|
|
|
|
|
IMO, this is the cleanest answer:
Better yet, if you are using javascript to submit the form using the custom div, you should also use javascript to create it, and to set the display:none style on the button. This way users with javascript disabled will still see the submit button and can click on it. |
||
|
|
|
|
I think you should actually have a submit button or a submit image... Do you have a specific reason for using a "submit div"? If you just want custom styles I recommend |
||
|
|
|
|
I would also go with the hidden submit button method. |
||
|
|
|
|
If you are using asp.net you can use the defaultButton attribute on the form. |
||
|
|
|
|
I use @Sean's answer in my code, except that I've found that I also have to catch |
||
|
|
|
|
To submit the form when the enter key is pressed create a javascript function along these lines.
Then add the event to whatever scope you need eg on the div tag
This is also the default behaviour of internet explorer 7 anyway though (probably earlier versions as well). |
||
|
|
|
Use the following script.
For each field that should submit the form when the user hits enter, call the submitenter function as follows.
|
||
|
|
|
|
I would definitely not recommend using Sean Chambers or Remiu's method - as that only applies to certain keyboard varieties (mainly Latin-based, Western European and US keyboards) as it uses a keymap value, rather than an 'event' of some description (so, you need a fallback). The simplest way to do this is to do as Ross said, and apply your DIV styles to a Submit or image button, and achieve your functionality that way. |
||
|
|
|
|
VBScript: The Form:
Some Script:
|
||
|
|
|
|
Here is how I do it with jQuery
Other javascript wouldnt be too different. the catch is checking for keypress argument of "13", which is the enter key |
||
|
|
|
|
Why don't you just apply the div submit styles to a submit button? I'm sure there's a javascript for this but that would be easier. |
||
|
|
