Is it possible to smoothly animate the width of a table. Ten percent per second would be a good rate. So that it slowly expands and keeps expanding?
On load
<table id="01" width="80%" height="769">
1 second
<table id="01" width="90%" height="769">
2 second
<table id="01" width="100%" height="769">
3 second
<table id="01" width="110%" height="769">
In
JQueryyou can chain.animate()s to get what you want:and if you want to increase the size in one step (ie. without delay):
Here is a demo.