Guest User

Untitled

a guest
Feb 20th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. /* Add body class based on the url */
  2. var loc = window.location.pathname.match(/^\/?(\w+)\b/);
  3. if(loc) {
  4. $(document.body).addClass("page-" + loc[1].toLowerCase());
  5. } else {
  6. $(document.body).addClass("page-front");
  7. }
Add Comment
Please, Sign In to add comment