Edited progressbars

This commit is contained in:
Brinken
2012-03-15 09:43:50 +01:00
parent c9ec401798
commit 81dc309d49
12 changed files with 229 additions and 55 deletions
+2 -1
View File
@@ -2,7 +2,8 @@
$(document).ready(function () {
$("#nav li a").each(function () {
var hreflink = $(this).attr("href");
if (hreflink == location.href.split("/").pop()) {
var locationHref = location.href.split("/").pop();
if (hreflink == locationHref) {
$(this).parent().addClass("selected");
}
});