jQuery :submit Selector

jQuery Selectors jQuery Selectors

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.

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


Syntax

$(":submit")


jQuery Selectors jQuery Selectors


Color Picker

colorpicker