vote up 0 vote down star

In the following javascript/html, I can reference div.answer but how do I reference div#flashcard-001.answer?

HTML:

<div id="flashcard-001" class="flashcard">
    <div class="question">What color is the sky?</div>
    <div class="answer">blue</div>
    <button class="show">Show</button>
    <button class="hide">Hide</button>
</div>

Javascript:

//run when page is loaded
google.setOnLoadCallback(function() {
    $("div.answer").hide(); //WORKS
    $("div#flashcard-001.answer").hide(); //DOES NOT WORK
    $("button.show").bind("click", function(e) {
    	$("div.answer").show();
    });
    $("button.hide").bind("click", function(e) {
    	$("div.answer").hide();
    });
});
flag

4 Answers

vote up 6 vote down check

You're missing a space:

$("div#flashcard-001 .answer").hide();
link|flag
vote up 2 vote down

Since you want to select a descendant of the DIV element with the ID flashcard-001, you need the descendant selector or – since your element is also a direct child – the child selector:

div#flashcard-001 .answer
div#flashcard-001 > .answer
link|flag
vote up 3 vote down

try:

$("#flashcard-001").children(".answer").hide();

link|flag
1  
+1 This solution is more efficient than $("div#flashcard-001 .answer") or $("#flashcard-001 .answer"). – Gumbo Sep 26 at 19:08
@Jourkey: No, it really is since jQuery evaluates the selector from the right to the left. – Gumbo Sep 26 at 19:13
vote up 0 vote down

The outer most div has a full selector of:

div#flaschard-001.flashcard

not:

div#flashcard-001.answer

I believe you are simply using the wrong selector.

link|flag

Your Answer

Get an OpenID
or

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