gonito/templates/challenge.julius

10 lines
305 B
Plaintext
Raw Normal View History

2015-09-06 14:24:49 +02:00
$(document).ready(function () {
var url = window.location;
$('.navbar-left').find('.active').removeClass('active');
$('.navbar-left li a').each(function () {
if (this.href == url) {
$(this).parent().addClass('active');
}
});
});