Guest User

Untitled

a guest
Jul 15th, 2012
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. Redirect to other window JS
  2. 'http://localhost:7927/MyWeb/games.htm'
  3.  
  4. window.location("../games.htm");
  5.  
  6. window.location("/MyWeb/games.htm");
  7.  
  8. window.location = 'http://localhost:7927/MyWeb/games.htm';
  9.  
  10. window.location = '/MyWeb/games.htm';
  11.  
  12. window.location.href = ...
  13.  
  14. window.location.replace(...);
  15.  
  16. window.location.href = "/myweb/games.htm"
Advertisement
Add Comment
Please, Sign In to add comment