Um, why no worky? Trying to toggle a ul with this:
$("#others").children(".btn").click(function(){
if ($(this).children("ul").is(":hidden"))
{
$(this).children("ul").slideDown();
} else {
$(this).children("ul").slideUp();
}
});
And:
<div id="other">
<d开发者_运维知识库iv id="galleries">
<a href="#" class="btn">Galleries >> </a>
<ul id="select_gallery">
...
</ul>
</div>
<div id="events">
<a href="#" class="btn">Events >> </a>
<ul id="select_event">
...
</ul>
</div>
</div>
The UL isn't a child of the .btn its a sibling, try using next:
$("#other a.btn").click(function(){
var ul = $(this).next("ul");
if (ul.is(":hidden")) {
ul.slideDown();
} else {
ul.slideUp();
}
});
精彩评论