Hi,

I'm trying to develop a checker game animator for my checkers website.

I am trying to do this in the best way possible, which means I don't want to create one html page for each game I wish to animate on my website (that would be much easier for me, but take up too much space). I want to have one animator html page, and then send the game details to a javascript function on this page. Is this possible?

So basically I want to
a) From a checker problems page (problems.html) have a list of problems which have links to the animator page (animator.html)
b) When one of these links are clicked, the game 'details' are passed to a javascript function (loadgame()) on the animator page which is used to animate the game

Note, I'm not interested in 'how' to animate a game, just the details in how you can transfer data between pages like this.

Thanks in advance!