Skip to content

Instantly share code, notes, and snippets.

View rypptc's full-sized avatar

herr_pilgrim rypptc

View GitHub Profile
document.addEventListener('DOMContentLoaded', () => {
const commentForm = document.querySelector('#comment-form');
const commentsContainer = document.querySelector('#comments-container');
commentForm.addEventListener('submit', (event) => {
event.preventDefault();
submitComment(event);
});