-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtute54.html
36 lines (29 loc) · 852 Bytes
/
tute54.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 lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<p>This is a page</p>
</body>
<script>
//alert in in-browse js--does not return th epage
alert("This is a message ");
// prompt in js
// let name = prompt("What is your name?","Guest");
// console.log(name);
let deletePost = confirm("Do you really want to delete this post?");
if(deletePost){
//CODE TO DELETE THE POST
console.log("Your post has been deleted successfully");
}
else{
//CODE TO CANCEL DELETION OF THE POST
console.log("Your post has not been deleted");
}
console.log(deletePost);
</script>
</html>