I have a string that is dynamically entered into:
<span class="note_message">The order was manually edited:<br/>The list of edits goes here, and this maybe somewhat long sometimes</span>
That is an example of a string that may be entered into the span. It ALWAYS starts with "The order was manually edited:", so I would like to use jQuery to see if the string contains those words at the beginning and if so, to select the rest of the string after "The order was manually edited:" and save it into a separate variable.
How can I go about doing that?