Hey, if you to go: http://catonthecouchproductions.com/fish/ and those images under the dropdown are suppose to be hidden then appear on hover, I have this so far:
$(document).ready(function() {
$('.btn-fishing-trip').hover(function() {
$('.fishing-trip').slideDown("slow");
}, function() {
$('.fishing-trip').slideUp("slow");
});
$('.btn-combo').hover(function() {
$('.combo').slideDown("slow");
}, function() {
$('.combo').slideUp("slow");
});
});
But it is behaving weird. Any suggestions on what I can do? I think since once goes up the other slides over taking its place. Should i use animate() not slideDown?