tengo un pequeño problema.
Tengo el siguiente script para copiar al portapapeles el contenido de un input (text).
Código HTML:
<script> var copytoclip=1; function HighlightAll(theField) { var tempval=eval("document."+theField); tempval.focus(); tempval.select(); if (navigator.appName.indexOf("Microsoft") != -1&©toclip==1){ therange=tempval.createTextRange(); therange.execCommand("Copy"); } } </script>
Muchas gracias y muchos saludos!