I have an html5 game that I want to be able to launch by passing it a variable in an html link.
Basically, it a word game and I have two web servers, one that runs a word database tool, and one that runs the game.
I want to be able to build links from one server so that depending on the letter set being used, a user can call the game with a letter key, ie: http://mygame.com/index.html?key=ABCDE and the game would initialize based on that key.
I know I could save a file with the key and call it with AJAX at the beginning of the game, but is there away to pass a variable directly in a URL to the game (this would be very helpful in building links) ?
Many thanks!