-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
28 lines (23 loc) · 1.29 KB
/
script.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
//It uses the fetchStudents function to fetch the data from the google sheet and then displays it on the page as Table .
fetch('https://script.google.com/macros/s/AKfycbyGrtQOUbZJpfJYws3G40Awek7Kz-OZ7ahLM2VioTJ5aaoHmvKL8E9X0-0Ng4-QGgPQ/exec')
.then(response => response.json())
.then(characters => showCharacters(characters.data));
showCharacters = characters => {
document.write("<table class='tab'><tr class='tab'><th class='tab'><h2>Name</h2></th><th class='tab'><h2>USN</h2></th><th>");
characters.forEach(character => {
if(character.Name!="Name"){
if(character.USN=="4MT19CS174"){
document.write("<tr style='color:red;font-weight: bold;' class='tab'><td>" + character.Name + "</td><td>" + character.USN + "</td><td>");
}
// const characterElement = document.createElement('p');
// const USN = document.createElement('p');
else{
document.write("<tr style='color:black;font-weight: bold;'><td>" + character.Name + "</td><td class='tab'>" + character.USN + "</td><td>");
// characterElement.innerText = `Name: ${character.Name}`;
// USN.innerText = `USN: ${character.USN}`;
// charactersDiv.append(characterElement);
// charactersDiv.append(USN);
}
}
});
}