Hi team,
I have a requirement where an user needs to copy a web link (in a text field) from Laserfiche forms using a copy button. I have used a combination of HTML custom button and script.
function myFunction() {
var copyText = $('.myinput input').val();
$('#q8').copy();
document.execCommand("copy");
alert('Inspection completed for :' + copyText );
}
$('#q8').copy(); - this do not work. I have also tried copyText.select(), didnt work either.
Please let me know if anyone has come across similar requirement and a solution for the same.
Thanks in advance.
Bipin