-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata-attribute.js
41 lines (32 loc) · 1.06 KB
/
data-attribute.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
36
37
38
39
40
41
/* data attribute */
//create navigation class="navbar" data-number="0" data-name="navbarlight" in html
//example
/*
let nav=document.querySelector(".navbar");
//getattribute() method
console.log(nav[0].getAttribute("data-number"));
console.log(nav[1].getAttribute("data-number"));
//using dataset property
console.log(nav[0].dataset.number);
console.log(nav[1].dataset.number);
console.log(nav[0].dataset.name);
console.log(nav[1].dataset.name);
*/
/* classname property */
//get() or set() value of the class attribute of specified element.
//example(toggle class function)
//create class toggle in data-attribute.HTML
//create to CSS classes in head of HTML to change color.
/*
let toggle=document.querySelector(".toggle"); //class name
//creating an annonymous function
let color=function(flag){
if(flag){
toggle.classname="toggle_in";
} else{
toggle.classname="toggle_out";
}
};
color(true);
color(false);
*/