cryptoform/includes/inc-bottom.php

13 lines
283 B
PHP
Raw Normal View History

2025-03-09 08:50:22 +01:00
<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>