Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have 2 divs with a class. They are the same, but what do I need to hide one of them with jQuery? Thanks ;).

share|improve this question
2  
Which one do you want to hide? the :first, the :last, something else? – Damien_The_Unbeliever Nov 18 '12 at 8:26
last one, I know that stuff, but what if it wil become more? So more div's with the same class and I want to show one of them. – user1833195 Nov 18 '12 at 8:30
Just have different Id's as mentioned in the answers – MVCKarl Nov 18 '12 at 8:33

closed as not a real question by dystroy, Tats_innit, Thilo, undefined, Jan Dvorak Nov 18 '12 at 8:36

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

6 Answers

You should give different IDs to each of those DIVs and then you can use ID based selector to hide the DIV of your choice.

$("#divID").hide();
share|improve this answer
hmm.. I wan't it like this. I have 2 items from the database who are the same. and I wan't to make them like one? – user1833195 Nov 18 '12 at 8:26

Jquery

$("#HideThisDiv").hide();

HTML

<div class="same" id="HideThisDiv"> </div>
<div class="same" > </div>
share|improve this answer

Try this one:

$($('.foo')[0]).hide();

There you select all foo classed tags and then you pick up the first one for hiding.

share|improve this answer
Isn't the double invocation of $() kind of a complicated way of saying $('.foo').eq(0).hide()? – nnnnnn Nov 18 '12 at 9:32
I didn't know that eq so far you may be right. :) – rekire Nov 18 '12 at 11:54

You can use :first and :last.

$('.class:first').hide();
share|improve this answer

You can try something like this:-

$("#divID").hide();
share|improve this answer

You have the same class for the div but you do the different Id for the two different div and using the Id use the Jquery for hide and show the div

<div class="demo" id="first">
...................
...................
</div>
<div class="demo" id="second">
.................
.................
</div>
share|improve this answer

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