Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

140
Views
JavaScript code unintentionally runs twice

google develop mode

It seems that the submit event function is executed twice while creating the personal project comment function. The vm729 comment.js file floating in the developer tools seems to be the problem. This is the code in the comment.js file.

import 'regenerator-runtime';

const detailContainer = document.querySelector('.detail__container');
const form = document.getElementById('commentForm');
const textarea = form.querySelector('textarea');
const button = form.querySelector('button');

async function handleSubmit(event) {
 event.preventDefault();
 const text = textarea.value;
 if (text === '') {
   return;
 }
 const { cafeid } = detailContainer.dataset;
 const response = await fetch(`/comments/cafes/${cafeid}`, {
   method: 'POST',
   headers: {
     'Content-Type': 'application/json',
   },
   body: JSON.stringify({ text }),
 });
 console.log(response);
 textarea.value = '';
}

form.addEventListener('submit', handleSubmit);
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!