Hi,
I have a table with on row and 6 cells.
Is there a way using javascript to randomly shuffle the contents of these tables around without reloading the page.
eg:
<table><TR><TD>A</td><td>b</td><td>C</td></tr></table>
then click a link and it becomes:
<table><TR><TD>B</td><td>C</td><td>A</td></tr></table>
I have seen this done with images, tho I dont know enough javascript to know how its done.
I am trying to do it with tables first if possible so that there is less image loading on the page, but if I have to change into using images i will.
Any help on making a random shuffle would be greatly appreciated.
I have a table with on row and 6 cells.
Is there a way using javascript to randomly shuffle the contents of these tables around without reloading the page.
eg:
<table><TR><TD>A</td><td>b</td><td>C</td></tr></table>
then click a link and it becomes:
<table><TR><TD>B</td><td>C</td><td>A</td></tr></table>
I have seen this done with images, tho I dont know enough javascript to know how its done.
I am trying to do it with tables first if possible so that there is less image loading on the page, but if I have to change into using images i will.
Any help on making a random shuffle would be greatly appreciated.