Skip to content

Instantly share code, notes, and snippets.

@kikegarcia
Created July 12, 2013 12:09
Show Gist options
  • Save kikegarcia/5983987 to your computer and use it in GitHub Desktop.
Save kikegarcia/5983987 to your computer and use it in GitHub Desktop.
Replace "a href" with the actual real URL
var url = $(location).attr('href');
var urlsplit = url.split("/");
var urlname = urlsplit[5];
$('a').each(function(){
this.href = this.href.replace('.pag.', urlname);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment