12 lines
303 B
JavaScript
12 lines
303 B
JavaScript
|
function copiarEnlace() {
|
||
|
var copyText = document.getElementById("enlace");
|
||
|
|
||
|
/* Select the text field */
|
||
|
copyText.select();
|
||
|
copyText.setSelectionRange(0, 99999); /* For mobile devices */
|
||
|
|
||
|
/* Copy the text inside the text field */
|
||
|
document.execCommand("copy");
|
||
|
alert("ok");
|
||
|
}
|