In jQuery is there a way to throw/return no elements if jQuery selector returns more than one DOM element? I know you can wrap every call with a simple check, but I’d like to use an existing method if any.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There’s no built-in method, but it wouldn’t be hard to add one:
Put it in a chain to null out the chain if more than one element matched:
See http://jsfiddle.net/alnitak/sevTY/