I have 2 divs with a class. They are the same, but what do I need to hide one of them with jQuery? Thanks ;).
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.
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.
|
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.
|
|||
|
|
Jquery
HTML
|
|||
|
|
|
Try this one:
There you select all foo classed tags and then you pick up the first one for hiding. |
|||
|
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
|
|||
|
|
:first, the:last, something else? – Damien_The_Unbeliever Nov 18 '12 at 8:26