-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathques13.html
62 lines (46 loc) · 1.03 KB
/
ques13.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
59
<html>
<head>
<title>Question 13</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
</head>
<body>
<div class="panel">
Line 1 in div 1<br>
Line 2 in div 2<br>
</div>
<br>
<div class="panel">
Line 1 in div 2<br>
Line 2 in div 2<br>
Line 3 in div 2<br>
</div>
<br>
<div class="panel">
Line 1 in div 3 <br>
Line 2 in div 3 <br>
</div>
<br>
<div class="panel">
Line 1 in div 4<br>
Line 2 in div 4<br>
</div>
<script>
$(document).ready(function()
{
var highest = null;
var hi = 0;
$(".panel").each(function()
{
var h = $(this).height();
if(h > hi){
hi = h;
highest=$(this);
}
});
alert('max height'+hi);
$(highest).css("background-color","red");
});
</script>
<a href="contents.html">Navigate to other questions</a>
</body>
</html>