-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (33 loc) · 1.17 KB
/
index.html
File metadata and controls
57 lines (33 loc) · 1.17 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
<!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">button</button>
<script>
// $("p").css("background-color","yellow");
// $(document).ready(function(){
// $(".one").click(function(){
// $("#ravi").hide();
// });
// $(".two").click(function(){
// $("#ravi").show();
// });
// });
$("p").css("background-color","yellow");
$("p").css("color","red");
$(document).ready(function(){
$(".one").click(function(){
$("#ravi").toggle();
});
});
</script>
</body>
</html>