-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
50 lines (40 loc) · 1.35 KB
/
Copy pathscript.js
File metadata and controls
50 lines (40 loc) · 1.35 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
/* ========================================
TASK 3: script.js
========================================
*/
// RUBRIC: Logic triggers.
// Mark checks if showPopup is called ONLY on submission.
function addRecommendation(event) {
// Prevent form from refreshing the page
event.preventDefault();
// Get values
const name = document.getElementById("rec-name").value;
const message = document.getElementById("rec-text").value;
// Validation (Basic)
if (name.trim() !== "" && message.trim() !== "") {
// Create new recommendation card
const recContainer = document.getElementById("rec-list");
const newCard = document.createElement("div");
newCard.classList.add("recommendation-card");
newCard.innerHTML = `
<p>"${message}"</p>
<br>
<strong>- ${name}</strong>
`;
// Append to list
recContainer.appendChild(newCard);
// Clear inputs
document.getElementById("rec-name").value = "";
document.getElementById("rec-text").value = "";
// RUBRIC: showPopup() triggered ONLY here
showPopup(true);
}
}
function showPopup(show) {
const popup = document.getElementById("popup");
if (show) {
popup.style.display = "flex";
} else {
popup.style.display = "none";
}
}