-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcolor.html
More file actions
47 lines (29 loc) · 1.08 KB
/
color.html
File metadata and controls
47 lines (29 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="one.js"></script>
</head>
<body>
<p id="ravi">
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Autem inventore dolores omnis. Possimus magnam id minima at, placeat nihil explicabo dolorum iure voluptatem consequatur laudantium soluta? Veritatis dolor doloremque molestias.
</p>
<button class="one">hide</button>
<button class="two">show</button>
<script>
$("#ravi").css("background-color","yellow");
$(document).ready(function(){
$(".one").click(function(){
$("#ravi").hide(1000);
$("#ravi").css("background-color","yellow");
});
$(".two").click(function(){
$("#ravi").show(1000);
$("#ravi").css("background-color","red");
});
});
</script>
</body>
</html>