vote up 1 vote down star

Hello,

I'm learning JQuery and have found the factory function $() with its selectors quite useful. However, I cannot figure out how to select within a particular element I have named as a variable. For example:

var thisDiv = $("#myDiv");

// thisDiv looks like this:
<div id="myDiv">
<input id="apples" />
<input id="bananas" />
</div>

How would I select the input with id="apples" given only the variable thisDiv in JQuery? Thanks!

flag

5 Answers

vote up 3 vote down check
$("#thisDiv #apples")

But you can also do:

thisDiv.find("#apples"); // use find method

and also:

$("#apples", thisDiv); // provide context
link|flag
Thanks for both solutions! – Jasie May 13 at 2:09
vote up 1 vote down

You could try this

thisDiv.find('#apples');
link|flag
vote up 1 vote down

You should be able to select it by searching within your div like:

 $("#myDiv").find("#apples")
link|flag
vote up 1 vote down
$('#apples', thisDiv);
link|flag
vote up 1 vote down

Perhaps yours was only an example and not representative of the proper code, but it's worth mentioning that an ID is unique per document, therefore you don't particularly need the context.

$('#apples');
$('#apples', thisDiv);  // same result, more lookups

If it was just an example, and you wanted to know how to find any element, using any selector, then yep, the other answers here are all correct.

thisDiv.find('li.myClass'); // or,
$('li.myClass', thisDiv);
link|flag
Some people like to be specific with selectors in an effort to speed up finding elements, however, with using just an Id, jQuery uses (IIRC) getElementById() which is the quickest. – alex May 13 at 3:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.