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

114
Views
Button to clear input value

I am trying to make a button (id="delete") that will clear any text entered in my field (id="input"), I have made a function and button, however after pressing the button nothing happens. Can't find the issue, the console also doesn't give any errors. Will be thankful for your assistance.

HTML:

<span contenteditable="true" ><p id="input"></p></span>
<button  id="delete">Delete Data</button>

JS:

const trigger = document.getElementById("delete");
trigger.value = '';

Thanks!

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

If you want to take action when a button is clicked, you should listen for its "click" event.

document.querySelector("#delete").addEventListener('click', () => {
    document.getElementById("input").innerHTML = ''
})
about 4 years ago · Juan Pablo Isaza Report
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!