12 lines
283 B
PHP
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>
|