htdocs/blog/submit-comment.js
2024-01-14 00:09:31 +00:00

18 lines
467 B
JavaScript

let commentForm = document.getElementById("commentForm");
commentForm.addEventListener("submit", (e) => {
e.preventDefault();
let name = document.getElementById("name")
let comment = document.getElementById("comment")
console.log(name.value)
console.log(comment.value)
let post = name.name // The post number ie 0 is stored in the name tag of the input field
comments[post].push(`${name.value}: ${comment.value}`)
console.log(comments)
});