-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtimeessentials3.html
More file actions
70 lines (58 loc) · 1.54 KB
/
timeessentials3.html
File metadata and controls
70 lines (58 loc) · 1.54 KB
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
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<script
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha256-3edrmyuQ0w65f8gfBsqowzjJe2iM6n0nKciPUp8y+7E="
crossorigin="anonymous"></script>
<script type="text/javascript">
$(document).ready(function(){
$("p").hide();
$("#show").click(function(){
$("p").hide();
$("#watch1").show();
});
$("#show2").click(function(){
$("p").hide();
$("#watch2").show();
});
$("#show3").click(function(){
$("p").hide();
$("#watch3").show();
});
$("#show4").click(function(){
$("p").hide();
$("#watch4").show();
});
$("#show5").click(function(){
$("p").hide();
$("#watch5").show();
});
$("#show6").click(function(){
$("p").hide();
$("#watch6").show();
});
$("#show7").click(function(){
$("p").hide();
$("#watch7").show();
});
});
</script>
</head>
<body>
<img id="show" src="http://dummyimage.com/100x100/58baa6/fff" />
<img id="show2" src="http://dummyimage.com/100x100/000000/fff" />
<img id="show3" src="http://dummyimage.com/100x100/58baa6/fff" />
<img id="show4" src="http://dummyimage.com/100x100/000000/fff" />
<img id="show5" src="http://dummyimage.com/100x100/58baa6/fff" />
<img id="show6" src="http://dummyimage.com/100x100/000000/fff" />
<img id="show7" src="http://dummyimage.com/100x100/58baa6/fff" />
<p id="watch1">watch 1.</p>
<p id="watch2">watch 2.</p>
<p id="watch3">watch 3.</p>
<p id="watch4">watch 4.</p>
<p id="watch5">watch 5.</p>
<p id="watch6">watch 6.</p>
<p id="watch7">watch 7.</p>
</body>
</html>