Custom hyper link text on banner header is broken/missing after upgrade to SanDiego

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-14-2022 08:59 PM
Hello All,
We have added a customized hyper link (Submit incident) to the banner header.
As we have upgraded to San Diego release and when we switch to new next experience UI, the custom hyper link (Submit Incident), we had on the banner header is missing.
When I change my UI from next Experience to UI16, I was able to see (Submit Incident) hyper link on banner header.
Is there way that we can add this hyperlink to New next experience banner header?
Please let me know, thanks in advance!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-04-2023 06:39 AM
Hi Can you Share the Script to anchor HTML element ? I used this below script on Ui script to show on the banner but it shows on the header menu of the form
addLoadEvent(function(){
try{
var confidentialMessage = "<img src='bullet.png' width='15' height='15' style='margin-right: 5px;' /><a target='gsft_main' https://www.youtube.com/watch?v=tZdZOCBROw0'id='confidentialMessage' style='margin-right: 20px; font-size: 100%; color: #000;text-decoration: underline;'>Please read the confidentiality clause</a>";
var nav_header = document.getElementsByClassName("navbar-header")[0];
nav_header.insert({before:confidentialMessage});
}catch(e){}
});