Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

jquery

Can somebody explain to me what in Jquery means matched elements?

2 Answers

Steven Parker
Steven Parker
229,732 Points

This concept is not unique to jQuery, you will see this elsewhere such as in plain JavaScript and CSS.

Anytime you identify a set of elements using a selector, that set of elements are the "matched elements". That just means that they "matched" what the selector was looking for.

For example, for $("p") in jQuery the matched elements would be all the paragraphs in the document.
Or for .sample { /* ... */ } in CSS the matched elements would be all those with a class name of "sample".

thank you Steven