are you trying to modify the URL without reloading to “fool” the browser? if so, this may work:
window.history.pushState( , , 'level1-2.html');
it uses the History API
CLICK HERE to find out more related problems solutions.
are you trying to modify the URL without reloading to “fool” the browser? if so, this may work:
window.history.pushState( , , 'level1-2.html');
it uses the History API
CLICK HERE to find out more related problems solutions.