forked from Pankaj-Str/JavaScript-Tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuserInput_prompt.html
More file actions
41 lines (27 loc) · 897 Bytes
/
userInput_prompt.html
File metadata and controls
41 lines (27 loc) · 897 Bytes
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
<!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>
function add_data() {
size = prompt("Enter Food Size .... ");
data = []
for (let index = 0; index < size; index++) {
data.push(prompt("Enter Food Name .... "));
}
p_data = document.getElementById("print_data");
for (let index = 0; index < data.length; index++) {
// print all elements
p_data.innerHTML += "<li>" + data[index] + "</li>";
}
}
</script>
</head>
<body>
<button onclick="add_data()">Add Record</button>
<ul id="print_data">
</ul>
</body>
</html>