Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
<div class="user-key"> <input type="text" name="key" value="<?php echo $row['btc_add']; ?>" class="key" id="key" /> </div> <i class="fas fa-copy" style="color: #fff"></i>
<input type="text" value="Hello World" id="myInput"> <button onclick="myFunction()">Copy text</button>
function myFunction() { var copyText = document.getElementById("myInput"); copyText.select(); document.execCommand("copy"); alert("Copied the text: " + copyText.value); }