-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathques16.html
40 lines (30 loc) · 1.09 KB
/
ques16.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
<html lang="en">
<head>
<title>Question 16</title>
<meta charset="UTF-8">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
</head>
<body>
<div id="div1">Hello and Welcome to jQuery</div>
<table ><tr> <button type="button">Cross Button</button></tr></table>
<script>
$(document).ready(function()
{
$("button").click(function()
{
$.ajax({url:"https://jsonplaceholder.typicode.com/posts",async:'false',dataType:'text',type:'DELETE',success:function(result) {
setTimeout(function(){
console.log(result);
$('#div1').append('</br>'+result);
$('button').remove();
$('table tr').append('</br>button removed');
},1000);
},error:function(){
}});
console.log("outside ajax");
});
});
</script>
<a href="contents.html">Navigate to other questions</a>
</body>
</html>