Which is the correct jQuery selector to select all <button> elements and <input> elements with type="input"?
Options:
Explanation:
The
$(":button") selector is used to select all
elements and
elements with
type="input".
Tags:
jQuery
Answer:
Which is the correct jQuery selector to select all <button> elements and <input> elements with type="input" $(":button").