cryptoform/includes/inc-bottom.php
2025-03-09 08:50:22 +01:00

12 lines
283 B
PHP

<script>
function Copy(param) {
var copyText = document.getElementById(param);
copyText.select();
copyText.setSelectionRange(0, 99999); // For mobile devices
navigator.clipboard.writeText(copyText.value);
// alert("Copied: " + copyText.value);
}
</script>
</body></html>