- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-05-2020 12:46 AM
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.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-05-2020 12:51 AM
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:
If I have answered your question, please mark my response as correct and helpful.
Thank you very much
Cheers
Alberto

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-10-2021 06:01 PM
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-29-2021 05:00 AM
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]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-08-2021 08:04 AM
[code]
<a href="https://www.servicenow.com" target="_blank">Link</a>
[/code]