Skip to content

Instantly share code, notes, and snippets.

@tsterker
Last active January 4, 2016 12:49
Show Gist options
  • Save tsterker/8623970 to your computer and use it in GitHub Desktop.
Save tsterker/8623970 to your computer and use it in GitHub Desktop.
javascript: 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