Needed this to do my canvas graph experiment... that I eventually won't do, cause I found so many CSS graph examples that I find it useless... See: http://html5stars.com/?p=42
Download the package, the minimum to make it work is there, js is commented and relatively simple. Have fun!
FEEDBACK:Comment on post or sign up and go to the forum section: click here
EXAMPLE
month
times I washed my hair
action
STEP BY STEP INSTRUCTIONS
1- Create a section in your HTML with a table and its header:
<table id='swDynTable'>
<tr>
<th>month</th>
<th>times I washed my hair</th>
<th>action</th>
</tr>
</table>
2- Insert the create row button that needs to have id='create-row':
<input id='createRow' type='button' name='createRow' value='create a row'></input>
3- copy and include the .js files (preferably right before </body>)