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"); } const HORARIO_CONTAINER = '
\n' + ' \n' + '
\n' + ' \n' + ' \n' + '
\n' + '
'; function agregarHorarioContainer() { $('#horarios').append(HORARIO_CONTAINER); } $( document ).ready(function() { agregarHorarioContainer(); });