Guest User

Untitled

a guest
Nov 16th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. var url = "http://website.com/#store";
  2. var hash = url.substring(url.indexOf("#")+1);
  3. if (hash == "store") {
  4. window.location.replace("http://store.website.com");
  5. } else if (window.location.href == "http://website.com") {
  6. window.location.replace("http://m.website.com");
  7. }
Add Comment
Please, Sign In to add comment