Skip to content

Instantly share code, notes, and snippets.

@elwinschmitz
Created August 6, 2015 16:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elwinschmitz/d963d684c41b3aeb2d0e to your computer and use it in GitHub Desktop.
Save elwinschmitz/d963d684c41b3aeb2d0e to your computer and use it in GitHub Desktop.
Bookmarklet: nl ⇄ be
(function(){
var url=document.location.href,A='.nl',B='.be';
if(url.indexOf(A)!==-1) {
url=url.replace(A,B);
}else{
url=url.replace(B,A);
};
document.location.href=url;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment