Development

Javascript click button to copy textarea or input

How to do a button click to copy for a text box or input with HTML and a little bit of Javascript.

The HTML (bootstrap):

<div class="container">
  <div class="row mt-2">
    <div class="col-6">
      <button id="words" class="btn btn-primary mb-2">Copy text area</button>
      <br />
      <textarea id="text_copy" class="form-control" name="text_copy" rows="5" cols="12" readonly>
Word
Word2
Word3
Word4</textarea>
      <br />
    </div>
    <div class="col-6">
      <button id="input-btn" class="btn btn-primary mb-2">Copy input</button>
      <br />
      <input type="text" class="form-control" id="input" name="input" value="test text to copy">
    </div>
  </div>
</div>

The Javascript functions to copy the text:

document.querySelector("#words").onclick = function () {
  document.querySelector("#text_copy").select();
  document.execCommand("copy");
};

document.querySelector("#input-btn").onclick = function () {
  document.querySelector("#input").select();
  document.execCommand("copy");
};

CodePen link.

Share

Recent Posts

Kennington reservoir drained drone images

A drained and empty Kennington reservoir images from a drone in early July 2024. The…

1 year ago

Merrimu Reservoir drone images

Merrimu Reservoir from drone. Click images to view larger.

1 year ago

FTP getting array of file details such as size using PHP

Using FTP and PHP to get an array of file details such as size and…

2 years ago

Creating Laravel form requests

Creating and using Laravel form requests to create cleaner code, separation and reusability for your…

2 years ago

Improving the default Laravel login and register views

Improving the default Laravel login and register views in such a simple manner but making…

2 years ago

Laravel validation for checking if value exists in the database

Laravel validation for checking if a field value exists in the database. The validation rule…

2 years ago