Basically it will search for childElement within the context of the current element, this.
For more information, see the documentation for the jQuery() function. In particular, the following excerpt explains the second argument and how it is equivalent to using find:
By default, selectors perform their searches within the DOM starting at the document root. However, an alternate context can be given for the search by using the optional second parameter to the $() function. For example, if within a callback function we wish to do a search for an element, we can restrict that search:
Use
Or...
$(this).children('.element');
This may be what you are looking for:
Basically it will search for
childElement
within the context of the current element,this
.For more information, see the documentation for the jQuery() function. In particular, the following excerpt explains the second argument and how it is equivalent to using
find
: