Skip to content

Instantly share code, notes, and snippets.

@adesignl
Created June 5, 2013 17:45
Show Gist options
  • Save adesignl/5715763 to your computer and use it in GitHub Desktop.
Save adesignl/5715763 to your computer and use it in GitHub Desktop.
JQuery Do Something Based On URL String
// Change Body Class Based On URL String
var url = location.pathname;
if (url.indexOf('INSERT STRING HERE') > -1) { //Does It Contain This String?
// Do Somthing Here Like Change Body Class
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment