I have a problem with window.location.href.
I\'m trying to redirect to a page with the following code:
window.location.href = \"juego.html\"+\'?modo
Try window.location.replace(...) instead.
window.location.replace(...)
Refer this question for information:
How to redirect to another webpage in JavaScript/jQuery?