Example

Select input and button elements with type="submit":

$(":submit")

Try it yourself »

Definition and Usage

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.

Syntax

$(":submit")
 

Tips and Notes

Tip: Using input:submit as a selector will not select the button element.