I'm using jQuery to extend a div to show more information (which is in a div). However, when I click the "show more" link, how can I make it so it'll extend the div as well?
Here's a preview of my project: http://i55.tinypic.com/2uzrtat.png
Notice the "Solo" box. How can I extend it to the bottom if the "see more" link is clicked, and vice-versa?
-- My Code --
$(document).ready(function() {
$('#slickbox').hide();
$('#slick-toggle').click(function() {
$('#slickbox').toggle(300);
$('.column').animate({height:1000+'px'});
});
});