-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathques14.html
59 lines (55 loc) · 1.18 KB
/
ques14.html
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<title> Question 14 </title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<style>
table, th, td {
border: 1px solid black;
}
th, td {
padding: 5px;
text-align: center;
}
</style>
</head>
<body>
<table style="width:100%" id="someTable">
<center><strong> Scores </strong><center>
<tr>
<th class="name">First Name</th>
<th class="lname">Last Name</th>
<th class="scores">Score</th>
</tr>
<tr>
<td class="name">Pavleen </td>
<td class="lname">Kaur </td>
<td class="scores">80</td>
</tr>
<tr>
<td class="name">Riya</td>
<td class="lname">Arora</td>
<td class="scores">90</td>
</tr>
<tr>
<td class="name">Aditya</td>
<td class="lname">Garg</td>
<td class="scores">8</td>
</tr>
<tr>
<td class="name">Karan</td>
<td class="lname">luthra</td>
<td class="scores">50</td>
</tr>
</table>
<script>
$(document).ready(function(){
$('.scores').each(function(i, n) {
if($(n).text() > 10)
$(n).css('color', 'red').css('background-color','yellow');
});
});
</script>
<a href="contents.html">Navigate to other questions</a>
</body>
</html>