ExampleSelect input and button elements with type="submit":
Try it yourself » |
The :submit selector selects button and input elements with type=submit.
If a button element has no defined type, most browsers will use it as a button with type=submit.
$(":submit") |
Tip: Using input:submit as a selector will not select the button element.