Hello everyone!
I have a message on form -> "The opportunity Opp_Name has been approved"
I would like to click on Opp_Name and to be redirected to the specified opportunity form.
I have tried to do something like this:
function getOpportunityLink() {
var link = document.createElement('a');
var text = document.createTextNode("Opportunity Name");
link.appendChild(text);
link.title = "Opportunity Name";
link.href = "www.google.com";
//document.body.appendChild(link);
return link.outerHTML;
}
In the CRM it shows me like this ->>> "The opportunity <a title="Opportunity Name" href="www.google.com">Opportunity Name</a> has been approved"
What am I doing wrong?
*This post is locked for comments