Skip to content

Instantly share code, notes, and snippets.

@tsterker
Last active December 25, 2015 08:59
Show Gist options
  • Save tsterker/6950561 to your computer and use it in GitHub Desktop.
Save tsterker/6950561 to your computer and use it in GitHub Desktop.
var episode = window.location.href.match(/[0-9]{2}/g)[1];
var next = +episode + 1;
next = (next+'').length === 1 ? '0'+next : next;
window.location.href = window.location.href.replace('e'+episode, 'e'+next);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment