Skip to content

Instantly share code, notes, and snippets.

@Octagon-simon
Created October 16, 2021 13:18
Show Gist options
  • Select an option

  • Save Octagon-simon/7f8336c57ae0fa089d7cc7f3ca1d03fc to your computer and use it in GitHub Desktop.

Select an option

Save Octagon-simon/7f8336c57ae0fa089d7cc7f3ca1d03fc to your computer and use it in GitHub Desktop.
$(document).ready(function () {
var url = window.location;
$('ul.navbar-nav a[href="' + url + '"]').parent().addClass('active');
$('ul.navbar-nav a').filter(function() {
return this.href == url;
}).parent().addClass('active');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment