I have a simple jquery function that resizes a table when it is clicked.
<script type="text/javascript" src="jquery-1.3.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
$('.expand_table').live("click", function()
{
$('.expand_table').attr('width', 800);
});
});
</script>
How would I build on this to make the table smoothly expand or grow to the new size?