I want to copy a input text to a clipboard and add before a string. I use
function copyLastColumn() {
var copyText = document.getElementById("oidinput");
copyText.select();
document.execCommand("copy");
}
I want to add the string "DDE-" before the copytext. HOw can I do it? Thanks Sven