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"); }