Guest User

Untitled

a guest
May 27th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. var url = window.location.pathname,
  2. urlRegExp = new RegExp(url.replace(/\/$/,"") + "$");
  3. $(".box-mnu a").each(function(){
  4. if(urlRegExp.test(this.href.replace(/\/$/,""))){
  5. $(this).addClass("active");
  6. }
  7. });
Add Comment
Please, Sign In to add comment