Created
September 18, 2014 10:41
-
-
Save shahariaazam/6549c2d884ad64d0a852 to your computer and use it in GitHub Desktop.
When you will click on a link from page navigation and when that page will be opened then that opened page related navigation li will be active
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(document).ready(function(){ | |
| var a = $('.navbar-nav a'); | |
| a.each(function(){ | |
| if(window.location.href == $(this).attr('href')){ | |
| $(this).closest('li').addClass('active'); | |
| } | |
| }) | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment