-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader_functions.js
35 lines (33 loc) · 1.14 KB
/
header_functions.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
$(function () {
var title = document.getElementsByTagName("title")[0].innerHTML;
$("#title").text(title);
console.log($(".menu1").text());
var items = $(".menu1").length;
var i;
for (i = 0; i <= items; i++) {
console.log("items: " + items);
title_current = $("a.menu1:nth-child(" + i + ")").text();
console.log(title_current + "/" + title);
console.log("i: " + i);
if ((title == title_current)) {
$("a.menu1:nth-child(" + i + ")").addClass('w3-light-grey');
}
console.log("_______________");
}
console.log("_______________");
console.log("menu2");
console.log("_______________");
console.log($(".menu2").text());
var items = $(".menu2").length;
var i;
for (i = 0; i <= items; i++) {
console.log("items: " + items);
title_current = $("a.menu2:nth-child(" + i + ")").text();
console.log(title_current + "/" + title);
console.log("i: " + i);
if ((title == title_current)) {
$("a.menu2:nth-child(" + i + ")").addClass('w3-light-grey');
}
console.log("_______________")
}
});