- Redirect to other window JS
- 'http://localhost:7927/MyWeb/games.htm'
- window.location("../games.htm");
- window.location("/MyWeb/games.htm");
- window.location = 'http://localhost:7927/MyWeb/games.htm';
- window.location = '/MyWeb/games.htm';
- window.location.href = ...
- window.location.replace(...);
- window.location.href = "/myweb/games.htm"