Leiste mit Community-Erfolgen erweitern.

Submissions are now open for the 2026 Adobe Experience Maker Awards
GELÖST

Adding colour to a Javascript variable text in JS code in workflow

Avatar

Level 4

Hi All,

 

I have a variable say "xyz" in javascript code in workflow and want to output colour to the variable text that starts with a bullet point. <style> tag soes not work in JS, How can I include colour to only the bullet point. example code is given below:

 

var xyz= "<style="font-size: 14px; color:#762A91;">•</style> Output text <br><br>";

 

Thank you,

Rutuja Kelkar

Themen

Anhand von Themen werden Community-Inhalte kategorisiert und Sie können so relevanten Inhalt besser finden.

1 Akzeptierte Lösung

Avatar

Korrekte Antwort von
Community Advisor

Hello @Rut7 ,

How do you print this code? Is it with <%= xyz %>?

This will HTML encode your code, and also your variable is wrongly formatted, which should throw an error, as you need to escape double quotes.

To prevent it from escaping HTML, you need to use document.write I do not know if that works inside delivery. I am sure it works in webapp:



 

 

<%
var xyz= '<style="font-size: 14px; color:#762A91;">•</style> Output text <br><br>';
//i have replaced " with ' or you need to escape " with \" when the string is surrounded with ""
document.write(xyz); 
%>

 

 

 

 

 

Marcel Szimonisz

MarTech Consultant
for more tips visit my blog
https://www.martechnotes.com/

Lösung in ursprünglichem Beitrag anzeigen

2 Antworten

Avatar

Korrekte Antwort von
Community Advisor

Hello @Rut7 ,

How do you print this code? Is it with <%= xyz %>?

This will HTML encode your code, and also your variable is wrongly formatted, which should throw an error, as you need to escape double quotes.

To prevent it from escaping HTML, you need to use document.write I do not know if that works inside delivery. I am sure it works in webapp:



 

 

<%
var xyz= '<style="font-size: 14px; color:#762A91;">•</style> Output text <br><br>';
//i have replaced " with ' or you need to escape " with \" when the string is surrounded with ""
document.write(xyz); 
%>

 

 

 

 

 

Marcel Szimonisz

MarTech Consultant
for more tips visit my blog
https://www.martechnotes.com/

Avatar

Administrator

Hi @Rut7,

Was the given solution helpful to resolve your query or do you still need more help here? Do let us know.

Thanks!



Sukrity Wadhwa