Advertisement
OmgImAlexis

Untitled

May 11th, 2014
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. var url = window.location.href;
  2. var oldUrl = "http://oldurl.tumblr.com/";
  3. var newUrl = "http://itsmemacleod.tumblr.com/";
  4.  
  5. // Split fucking Query strings
  6. var splitString = oldUrl.substr(url.indexOf(oldUrl) + 1);
  7.  
  8.  
  9. if (splitString.length > 1) {
  10. // New Url With Query strings
  11. newUrl = newUrl + splitString;
  12. }
  13. window.location.replace(newUrl)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement