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.

What I want to do is target my H2 tag. How can I achieve this? What I want to do is hide my second h2 tag. Thanks Stackoverflow!

<ul id="nav">
  <li class="nav1"><a href="/">Home</a></li>
  <li class="nav2"><a href="#">Member Solutions</a>
    <div class="subMenu"  >
      <ul>
        <li class="sectionTitle">
          <h2><a href="#">Example Head</a></h2>
        </li>
        <li><a href="#">Services</a>
          <ul>
            <li><a href="#">Example Link</a></li>
            <li><a href="#">Example Link</a></li>
            <li><a href="#">Example Link</a></li>
            <li><a href="#">Example Link</a></li>
            <li><a href="#">Example Link</a></li>
            <li><a href="#">Example Link</a></li>
            <li><a href="#">Example Link</a></li>
          </ul>
        </li>
        <ul>
          <li class="sectionTitle">
            <h2><a href="#">Hide this h2 tag</a></h2>
          </li>
          <li><a href="#">Example Link</a></li>
          <li><a href="#">Example Link</a></li>
          <li><a href="#">Example Link</a></li>
          <li><a href="#">Example Link</a></li>
          <li><a href="#">Example Link</a></li>
          <li><a href="#">Example Link</a></li>
          <li><a href="#">Example Link</a></li>
        </ul>
        <li><a href="#">Umbrella Insurance</a></li>
      </ul>
    </div>
  </li>
  <li class="navLast"><a href="#">Contact</a></li>
</ul>
share|improve this question

3 Answers

up vote 3 down vote accepted

If you want to hide based on an index, use eq:

$("#nav h2").eq(1).hide();

jsFiddle demo

share|improve this answer
Nifty. I would have $($('#nav h2').get(1)).hide();, I didn't know about the eq() operator. – Elf Sternberg Sep 1 '11 at 14:15
Thank you very much. This worked perfectly. – BeEasy Sep 1 '11 at 14:30
$("#nav h2:first").hide() also should work. – Wabbitseason Sep 1 '11 at 15:18
that would hide all my first h2 tags wouldn't it? @Digital Planes method worked because i targeted the h2 tag according the index of the markup. – BeEasy Sep 2 '11 at 13:19
myH2Tags = $("div.submenu").find("h2");
$(myH2Tags).get(1).hide();
share|improve this answer
Doesn't work. .get() returns the DOM object, not a jQuery object; I don't think you can chain hide() to it. – Elf Sternberg Sep 1 '11 at 14:16
I checked the manual of jquery and I saw my mistake. I mixed it up with eq(). Sorry. – reporter Sep 1 '11 at 14:34
var hideThis = $('ul li.sectiontitle').find('h2');

$(hideThis).hide();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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