私の質問をご覧いただきありがとうございます。
背景画像のある div があり、クリックすると、この画像を変更する別のクラスを追加しています。
また、この div をクリックしたときにスパン内のテキストを変更したいと考えています。
以下で試しましたが、クラスの追加が停止しました:
$('.rpLeftArm').click(function () {
$('.rpLeftArm').addClass("rpLeftArmActive")
$('#currentStep').html("Pick up the hand furthest away from you and place the back of their hand onto their opposite cheek. <span style="color: Red;">Keep your hand there to guide and support their head as you roll them.</span>");
});
スパンテキストの変更を、トリガーされる別の関数に入れようとしましたが、それも間違っています。
どんな助けでも大歓迎です。