I'd like to update element's text dynamically:
<div>
**text to change**
<someChild>
text that should not change
</someChild>
<someChild>
text that should not change
</someChild>
</div>
I'm new to jQuery, so this task seems to be quite challenging for me. Could someone point me to a right function/selector to use?
If it is possible, I'd like to do it without adding a new container for the text I need to change.
Thanks in advance.

