Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 15th, 2012  |  syntax: None  |  size: 0.36 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  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"