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
|
i want to when mouseover event run in an link then next div with "cont" class hide. i use below code
but not work. please help thanks |
|||||||||
|
|
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
.cont is sibling to .toggle, which is the parent of your link then your jQuery code needs to be this
First selects the link, then it's parent (.toggle) and then .toggle's sibling which is .cont |
|||||||||||||||
|