I have a span
with id similar to:
<span id="xxx" clas="some_classes">
<span>This text is fixed</span>
This text can be changed
</span>
I need to change the text "This text can be changed" in another text using jquery.
I can't use $("#xxx").text("My new text");
because the nested span need to stay here.
How can replace only text?