Add a link in work notes for user to be able to click on

Gemma4
Mega Sage

Hi everyone 

I have a requirement for technicians to be able to add hyperlinks for users to click instead of pasting a full url. Below is what I've tried so far with luck. (trying to keep it as simple as possible) Has anyone achieved this without much customization. 

 

[code]<a href = “https://www.google.com"> Click Me! </a>[code]

7 REPLIES 7

Hi @Gemma4  - You should use target attribute while using href tag, this way your url will not try to open inside platform, You can use it to open on top or your page or new page.

 

You can try something like below line. 

 

[code]<a href = "https://www.google.com" target="_top"> Click Me! </a>[/code]

 

OR

 

[code]<a href = "https://www.google.com" target="_blank"> Click Me! </a>[/code]

 

Hope it will help you.

 

Thanks,

Harsh

 

 

 

As Harsh mentioned I would update the target value. 

 

https://www.w3schools.com/tags/att_a_target.asp

@Gemma4  Problem is with double quotes, you have typo there,  please use correct quotes. 

 

[code]<a href = "https://www.google.com"> Click Me! </a>[/code]