Adding a clickable Link/URL to a VTB Card

stefank
Kilo Contributor

Hello,

is there any chance to add (clickable) links to a description or comment of a card? Right now any comment added to a card is simply displayed as text.

Since we use a lot of external resources via links on google drive it would be great to be able to just click a link in a comment to get there.

1 ACCEPTED SOLUTION

Alberto Consonn
ServiceNow Employee
ServiceNow Employee

Hi,

use the following code:

[code]
<a href="https://www.servicenow.com">Link</a>
[/code]

Just tried in my PDI, it works like a charm:

find_real_file.png

If I have answered your question, please mark my response as correct and helpful.

Thank you very much

Cheers
Alberto

View solution in original post

7 REPLIES 7

Roxanne Mc
Tera Contributor

Thanks for the code guidance which seemed to work in our Production environment, but when I clicked the link to go to the page (Google or YouTube), it errors out as shown. Would also prefer the option for it to open in a new browser window or tab. Surprised this core functionality isn't supported in a VTB.

find_real_file.png

 find_real_file.png

Ben73
Kilo Contributor

Faced the same challenge a found a way to open the hyperlink in a new window using following code using the "target" argument:


[code]<a href="https://www.servicenow.com/" target="_blank">link</a>[/code]

aliter
Kilo Contributor

[code]
<a href="https://www.servicenow.com" target="_blank">Link</a>
[/code]