How To Make Enter The Submit Button In A Form March 23, 2024 Post a Comment I have a form for logging into my website. I need to make it so that when the user hits enter, the form submits. How can I do this? Please provide code. Thanks. Solution 1: Have you actually tried anything? You need to add an <input type="submit"> and hide it with CSS so that the browser knows what to trigger when enter is pressed, yet still not show a button. For the sake of accessibility and ease of use, I'd show the button even if not that many people use it (enter is much nicer). Solution 2: add a handler to on keydown and check for keycode == 13. Make this submit the form like belowBaca JugaHow To Call A Javascript Function From A Json String?Form Event Incompatibilities Between Browsers, How To Address?Running A Function When Enter Is Pressed In A Text BoxfunctionaddInputSubmitEvent(form, input) { input.onkeydown = function(e) { e = e || window.event; if (e.keyCode == 13) { form.submit(); returnfalse; } }; } CopySolution 3: This should happen by default. In my experience some browsers require an <input type=submit> field, but generally this is not a requirement. Share You may like these postsEvent Listener Fires On Wrong Target / Function Executes At The Wrong TimeWith The Ace Editor, How Can I Unbind An Event?Jquery Resizable Event Does Not EndHow Do You Do Something If The Dom Is Changed? Post a Comment for "How To Make Enter The Submit Button In A Form"
Post a Comment for "How To Make Enter The Submit Button In A Form"