WordPress – Remove Parentheses from span with class using JS
While using a audio plugin for wordpress, the span/class automatically adds parentheses around the text, for example: `<span class="songwriter">(Female & Male dialog, Humorous, Storyteller, Cocky, Sassy)</span>` Is there a way to remove the parentheses using JavaScript? I tried: $('span.songwriter').text(function(index, text)…