How can I expand / enlarge a div from the center? It is currently expanding from left to right. Here is jsFiddle .
<div class="growme">test</div>
$('.growme').animate({ width: '100%', height: '100%', opacity: 1, }, 'normal');
.growme { background-color: #990000; height: 0; width: 0; position: absolute; filter: alpha(opacity=0); opacity: 0; }
source share