This is my code:
$(document).ready(function(){
var $question_mark = "?";
var $question = "They look " . concat($question_mark) . concat(" the plaining the wall ") . concat($question_mark) . concat(" the girls");
$('.scrolling_quiz').text($question);
});
this code shows a string like: They look ? the planing the wall ? the girls
now i want to add background:blue just to the "?". not to the full sentence. Can you please send me an idea or solution to this?
var $question_mark = "<font color=blue>?</font>";