If it doesn't taste like $SUIMEN, I'm not buying it. :3
Copy Text Button function copyText() { var textField = document.getElementById("textToCopy"); textField.select(); textField.setSelectionRange(0, 99999); // For mobile devices document.execCommand("copy"); alert("Copied the text: " + textField.value); }
Copy Text Button function copyText() { var textField = document.getElementById("textToCopy"); textField.select(); textField.setSelectionRange(0, 99999); // For mobile devices document.execCommand("copy"); alert("Copied the text: " + textField.value); }