Reputation: 241
I am expanding a div with jQuery animate. However inside that div I have another div which I want to follow with the expansion and always be at the bottom to the right.
This is the jquery code
$( ".top-button" ).click(function() {
$('.top-menu').animate({ height: 110 }, 800);
});
I am guessing it is something CSS related?
Upvotes: 0
Views: 72