Grow div

by aflynt

HTML

<button id="btn1">Button 1</button>
<div id="box" style="background:#98bf21;height:100px;width:100px;margin:6px;"></div>

JavaScript

$(document).ready(function(){
    $("#btn1").click(function(){
        $("#box").animate({height: "300px"});
    });
    $("#btn2").click(function(){
        $("#box").animate({height: "100px"});
    });
});