Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. $(document).ready(function() {
  2. var currentUrl = window.location.href;
  3. var lists = $('nav-link');
  4.  
  5. $(lists).each(function() {
  6. if ( $(this).attr('href') == currentUrl ) {
  7. $(this).parent("li").addClass("active");
  8. }
  9. });
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement