Saludos necesito ayuda para copiar el metodo para copiar el metodo de encriptacion, he intentado a hacer lo posible con otros metodos pero no ha funcionado asique me pueden ayudar
html.
<textarea class="mensaje" cols="20" rows="20"></textarea>
<div>
<button class="copiar" >Copiar</button>
</div>
css.
.mensaje{background: white;
background-image: url("Imagenes/muñeco.png");
background-repeat: no-repeat;
border:none;
border-radius: 24px;
color:#0A3871;
margin-left: 98px;
margin-top: 20px;
padding-left: 20px;
position: fixed;
}
.mensaje:focus {
outline: none;
}
.botones{
display: flex;
margin-top: 18px;
}
.texto-copiar{
border: 1px solid #0A3871;
border-radius: 24px;
color: #0A3871;
cursor: pointer;
height: 67px;
margin-left: 108px;
margin-top: 402px;
position: absolute;
width: 336px;
}
.copiar {
border: 1px solid #0A3871;
border-radius: 24px;
color: #0A3871;
cursor: pointer;
height: 67px;
margin-left: 108px;
margin-top: 402px;
position: absolute;
width: 336px;
}
js.
function copiar() {
let copyText = document.querySelector("#mensaje");
copyText.select();
document.execCommand("copy");
}
document.querySelector("#copy").addEventListener("click", copy);