Voici mon 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);
});
ce code affiche une chaîne comme : They look ? the planing the wall ? the girls
Maintenant, je veux ajouter background:blue juste au " ?", pas à la phrase complète. Pouvez-vous m'envoyer une idée ou une solution à ce problème ?