Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save Octagon-simon/3b9416e40bcb92df98047313ba673136 to your computer and use it in GitHub Desktop.
$(document).ready(function () {
var url = window.location;
$('ul#navigation a[href="' + url + '"]').parent().addClass('active');
$('ul#navigation 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