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

183
Views
focus issue when I click copy button using document.execCommand('copy')

I have a copy button created by javascript, and its has onclick event like this:

let copyButton = document.createElement("button");

copyButton.onclick = {

   const textLabel = document.createElement('textarea');
   textLabel.value = copyText;
   document.body.appendChild(textLabel);
   textLabel.select();
   document.execCommand('copy');
   document.body.removeChild(textLabel);
};   

It is lose focus when I click this button because the textLabel.select() function call.

What should I do to fix this issue?

Thanks so much.

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!