Skip to content

Instantly share code, notes, and snippets.

@robertbrook
Created November 6, 2020 17:17
Show Gist options
  • Save robertbrook/7f3ef91c0f3173a03fa68c3c6a4b1a72 to your computer and use it in GitHub Desktop.
Save robertbrook/7f3ef91c0f3173a03fa68c3c6a4b1a72 to your computer and use it in GitHub Desktop.
var url = document.URL ;
const myUrl = new URL(url);
if (window.location.origin == "https://legislation.glitch.me")
{window.location.href = "https://www.legislation.gov.uk" + myUrl.pathname}
else if (window.location.origin == "https://www.legislation.gov.uk")
{window.location.href = "https://legislation.glitch.me" + myUrl.pathname}
else {alert("oops")};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment