Onload client script to insert a url link on normal change request
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 hours ago
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
an hour ago
showFieldMsg() doesn't support adding link or HTML tags, but there is a workaround using DOM manipulation
check this, Note: DOM manipulation is not recommended practice
how to show URL link in field message when option is selected in dropdown list on catalog item
OR
you will have to use g_form.addInfoMessage() and show link
How to add hyperlink into info message
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
an hour ago
Another way is to use form annotation and there you can include link
Administering form annotations
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
an hour ago
Hi @EPoole954
var link = '<a href="https://www.nba.com/teams" target="_blank">official website here.</a>'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
an hour ago
I would use the g_form.addInfoMessage() to show a link on the form. It won't be on the field, but it is visible. The only other way is through DOM manipulation, but the advise is to use that as little as possible.
Please mark any helpful or correct solutions as such. That helps others find their solutions.
Mark