when i click the link the the div is resized to 100px .. but again if i click i want to the the div to be same as before (800px) using the same sliding animation ..how can i do that
#ee{
border:1px solid #00F;
height:100px;
width:800px;
position: absolute;
}
------------
<a href="#" class="mm">jajf</a>
<div id="ee">
</div>
--------------
<script type="text/javascript">
$(".mm").click(function(){
$("#ee").animate({
'width':'200px'
})
});
</script>