Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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