function refreshTable(){
$('#table').load('table.php');
setTimeout(refreshTable, 1000);
} </script>
I need to get the new table rows to animate down rather than just appear, if there is new data when it refreshes. Can anyone help me do this and do I need the while loop in a DIV rather than table? Thanks :)