How can I include a clickable URL in field message?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-11-2019 10:52 AM
I am trying to embed a URL in the field message, How can I use html in field message, Is this possible?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-11-2019 10:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-11-2019 11:21 AM
Thank you, missed to mention that this a variable on service catalog, which is a multiple choice field and I want to display the URL when one of the option is selected.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-11-2019 03:57 PM
You can try using an onChange Client script. for ex
var link = '<a href="https://www.servicenow.com">Link</a>';
var message = "<p>Testing "+link+" has been created!</p>";
g_form.showFieldMessage('<field name>',message,'info');
Please mark this response as correct or helpful if it assisted you with your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-11-2019 06:37 PM
I tried it but the html is not resolving. I just see the string value in the message including the html tags.