I'm trying to separate a string with html and non-html in it into two strings.
My javascript string is:
<span>1x</span> Front-line zero tolerance productivity
I want this to be separated into two variables
var quantity = "1x";
var name = "Front-line zero tolerance productivity";