Skip to main content

Add additional text into D365 portal label

 If we want to add additional label value to the D365 portal we can use this approach





 $(document).ready(function (){  
   var currentLabel = $("label#std_data_storage_confirmation_label").html();  
   var labelWithDatenSchutzLink = currentLabel + " <a href='https://www.fedalic.de/' class='fedalic-blue' target='_blank' >Datenschutz</a>";  
   $("label#std_data_storage_confirmation_label").html(labelWithDatenSchutzLink);  
 });  
65 

Comments