Skip to content

Instantly share code, notes, and snippets.

@mware
Created November 20, 2012 16:12
Show Gist options
  • Save mware/4118884 to your computer and use it in GitHub Desktop.
Save mware/4118884 to your computer and use it in GitHub Desktop.
add body class based on the url using RegEx
/* add body class */
var loc = window.location.pathname.match(/^\/?(\w+)\b/);
if(loc) $(document.body).addClass(loc[1].toLowerCase());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment