mirror of
https://github.com/rembo10/headphones.git
synced 2026-07-12 20:14:00 +01:00
8 lines
248 B
JavaScript
8 lines
248 B
JavaScript
$(document).ready(function () {
|
|
$("#nav li a").each(function () {
|
|
var hreflink = $(this).attr("href");
|
|
if (hreflink == location.href.split("/").pop()) {
|
|
$(this).parent().addClass("selected");
|
|
}
|
|
});
|
|
}); |