How to do a button click to copy for a text box or input with HTML and a little bit of Javascript.
<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"); };
A drained and empty Kennington reservoir images from a drone in early July 2024. The…
Merrimu Reservoir from drone. Click images to view larger.
Using FTP and PHP to get an array of file details such as size and…
Creating and using Laravel form requests to create cleaner code, separation and reusability for your…
Improving the default Laravel login and register views in such a simple manner but making…
Laravel validation for checking if a field value exists in the database. The validation rule…