-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathques6.html
36 lines (35 loc) · 898 Bytes
/
ques6.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
<!DOCTYPE html>
<html>
<head>
<title>Question 6</title>
<style type="text/css">
div, p, button{
text-align: center;
}
</style>
</head>
<body>
<div>
<p> this is a paragraph.</p>
<p>this is another paragraph.</p>
<p>this is another paragraph.</p>
this text is directly inside the div tag.
</div>
<center>
<button id="b1">change all div tags with p tags </button>
<button id="b2">change all the p tags with div tags</button>
</center>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#b1").click(function() {
$("div").replaceWith($("<p>"+$("div").text()+"</p>"));
});
$("#b2").click(function() {
$("p").replaceWith($("<div>" +$("p").text()+ "</div>"));
});
});
</script>
<a href="contents.html">Navigate for other questions</a>
</body>
</html>