JSFiddle - React, Tailwind, and code Playground
HTML
<a href="#" class="artist">Soulive<span class="create-play">Play</span></a>
JavaScript
alert($('a').contents().filter(function() {
return this.nodeType == 3;
}).text());
<a href="#" class="artist">Soulive<span class="create-play">Play</span></a>
alert($('a').contents().filter(function() {
return this.nodeType == 3;
}).text());