- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-09-2024 02:34 PM
g_form.addInfoMessage ('<a href="https://servicehubdev.colorado.gov/servicehub" target="_blank">Click here to go to back to the ServiceHub home page</a>');
looking how to replace https://servicehubdev with the system value of the environment
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-09-2024 02:53 PM
Try:
g_form.addInfoMessage ('<a href="/servicehub" target="_blank">Click here to go to back to the ServiceHub home page</a>');
OR
g_form.addInfoMessage ('<a href="/" target="_blank">Click here to go to back to the ServiceHub home page</a>');
Alternative is to use an non-expiry announcement.
Regards,
Sharad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-09-2024 02:53 PM
Try:
g_form.addInfoMessage ('<a href="/servicehub" target="_blank">Click here to go to back to the ServiceHub home page</a>');
OR
g_form.addInfoMessage ('<a href="/" target="_blank">Click here to go to back to the ServiceHub home page</a>');
Alternative is to use an non-expiry announcement.
Regards,
Sharad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-09-2024 03:33 PM
I used:
g_form.addInfoMessage ('<a href="/servicehub" target="_blank">Click here to go to back to the ServiceHub home page</a>');
and it worked fine.
Thank you