Skip to content

Instantly share code, notes, and snippets.

@Zackio
Created November 25, 2013 20:41
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 Zackio/7648502 to your computer and use it in GitHub Desktop.
Save Zackio/7648502 to your computer and use it in GitHub Desktop.
Javascipt: Insert string into url
var lastSlash = url.lastIndexOf('/') +1;
var firstSect = url.substring( 0, lastSlash );
var endSect = url.substring( lastSlash, url.length );
url = firstSect + 'full_screen_preview/' + endSect;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment