';
//encode the text
var encodedText = encodeURIComponent(text);
//find the link
var $whatsApp = $('.whatsapp a');
//set the href attribute on the link
$whatsApp.attr('href', url + name + ' is ' + finalScore + '%' + encodedText);
}
//call the decorator function
function myFunction() {
var copyTxt = document.getElementById("copytxt");
copyTxt.select();
document.execCommand("copy");
}