As a coding novice, I am curious to learn if it is feasible to use two different colors within a single jQuery string. For instance, if I aim to have the word 'Message' displayed in black (its current color) and 'Example' in a light grey shade, what steps should I take?
var textarray = [
"\"Message\"<br>Example",
];
Check out the working example on jsfiddle: http://jsfiddle.net/xL2g23oz/2/
Your assistance is greatly appreciated.