I have a tile based game, the tiles are made up of 25x30 divs 16x16px each. I have onscreen controls to move the character and when you click a direction the player id updates to the div corresponding with the arrow you clicked. Is it possible to load a new page when the player id is added to a certain div.
For example
<div id="player"><img src="assets/img/charcter/ash.png"/></div>
Player ID
<div id="13_5" class="mapsquare teleporttile"></div>
Teleport div
If I use the arrow keys to move my player onto the div with the teleportrile class, is it possible to then load a webpage in the same window? I cant think of anyway to do this thanks!