mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 12:16:18 +02:00
10 lines
No EOL
341 B
JavaScript
10 lines
No EOL
341 B
JavaScript
$(document).ready(function(){
|
|
var url = window.location;
|
|
// Will only work if string in href matches with location
|
|
$('ul.nav a[href="'+ url +'"]').parent().addClass('active');
|
|
|
|
// Will also work for relative and absolute hrefs
|
|
$('ul.nav a').filter(function() {
|
|
return this.href == url;
|
|
}).parent().addClass('active');
|
|
}); |