I can't get the jQuery slideDown effect to work. I'm trying to get a panel to show by sliding down. Instead it just shows like the show() method but in Firefox it doesn't even show.
jQuery:
$("#linkHBE").click(function(){
if ($(".panel").is(":hidden")) {
$(".panel").show("slow");
}
else
$(".panel").hide("slow");
});
The HTML:
<div class="panel"></div>
<ul id="grid">
<li class="web"><a id="linkHBE"><img width="296px" height="196px"></a></li>
<li class="graphic"><img width="296px" height="196px"></li>
<li class="web"><img width="296px" height="196px"></li>
</ul>