[jQuery] Trying to get text content after an element but before a line break
Suppose I have the following in a document:
<td class="nck"><strong>Line # </strong>64646354<br/></td>
How would I extract the number 64646354 from that and only the number?
Trying to avoid the complexity of a regular expression is possible.