You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
547 B
JavaScript
12 lines
547 B
JavaScript
const showNotesButton = document.getElementById("showNotesButton");
|
|
const notesContainer = document.getElementById("notesContainer");
|
|
|
|
showNotesButton.addEventListener("click", () => {
|
|
if (notesContainer.style.display === "none" || notesContainer.style.display === "") {
|
|
notesContainer.style.display = "flex";
|
|
showNotesButton.textContent = "Hide Notes"; // Change the button text
|
|
} else {
|
|
notesContainer.style.display = "none";
|
|
showNotesButton.textContent = "Show Notes"; // Change the button text
|
|
}
|
|
}); |