Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i want to when mouseover event run in an link then next div with "cont" class hide. i use below code

$("a").mouseover(function(){
  $(this).next("div.cont").hide();
});

but not work. please help thanks

share|improve this question
4  
Do you have any HTML to go along with this? – Tim Bolton Aug 3 '12 at 17:33
1  
Please show us the HTML as this is why you are being downvoted. We need this extra information in-order to assist you. – John Hartsock Aug 3 '12 at 17:36

1 Answer

It depends on what your mark-up code looks like.

jQuery .next() only selects siblings (same level in your DOM tree), so if your code looks like this

<body> // First Level
  <div class="toggle"> // Second Level
    <a href="#">Toggle</a> // Third Level
  </div>
  <div class="cont"> // Second Level
    <p>Content</p>
  </div>
</body>

.cont is sibling to .toggle, which is the parent of your link

then your jQuery code needs to be this

$("a").mouseover(function(){
  $(this).parent().next("div.cont").hide();
});

First selects the link, then it's parent (.toggle) and then .toggle's sibling which is .cont

share|improve this answer
2  
+1 for clearly stating "It depends on what your mark-up code looks like". – John Hartsock Aug 3 '12 at 17:38
1  
Disagree, if "it depends on what your mark-up code looks like" then he shouldn't try to answer an open question – Alexander Aug 3 '12 at 17:38
@Alexander Normally I don't, but in this case it's just obvious what's wrong – Tom Aug 3 '12 at 17:48
next div is in an other div i want to search in all of the document. is not easier way? – unavailable Aug 4 '12 at 6:48
@unavailable please post your HTML code and I'll have a look – Tom Aug 5 '12 at 14:27

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.