mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-04-04 19:10:56 -04:00
14 lines
369 B
JavaScript
14 lines
369 B
JavaScript
function addForm() {
|
|
let buttonClicked = true;
|
|
const addForm = document.querySelector(".add-form");
|
|
const button = document.querySelector(".add-btn");
|
|
|
|
button.addEventListener("click", () => {
|
|
buttonClicked
|
|
? (addForm.style.display = " block")
|
|
: (addForm.style.display = "none");
|
|
buttonClicked = !buttonClicked;
|
|
});
|
|
}
|
|
|
|
export { addForm };
|