How to set Script include return value to bold text
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2024 08:19 AM
Hi team,
I copied list collector variable values to String variable
My question is how to set bold text in script include
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2024 08:31 AM
Hi @AnilM99
I think this should work -
var arry = '';
arry += '<b>User email:</b> ' + gr.email + ", ";
arry += '<b>Phone number:</b> ' + gr.phone_number + ", ";
Please, don't forget to mark my answer as correct if it solves your issue or mark it as helpful if it is relevant for you!
Regards,
Tushar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2024 08:35 AM
Hi @AnilM99 ,
You can use html tag ( <b> ) in the same code where you are trying to print this values.
-Thanks,
AshishKM
Please mark this response as correct and helpful if it helps you can mark more that one reply as accepted solution

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2024 08:44 AM
Please see if the following code works.
arry += '<strong>User email:</strong> ' + gr.email + ", " ;
arry += '<strong>Phone_number: </strong>' + gr.phone_number+", " ;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2024 10:09 AM
Hi Team,
Thanks for the reply
I tried these methods but not working in Script include
Thanks