I am trying to change the text of some HTML
on a page. I cannot directly edit the HTML because in this case it is generated by XSLT
. I am trying to select text, using jQuery
, that is not inside of any element.
<span class="available">
<b>LARGE PRINT</b>
<span class="term">LARGE PRINT</span>
, J..
</span>
I am trying to select the ", J.." text and remove the extra period after and remove the comma before. Any insights on how I can select this text and than manipulate it?
Thanks in advance.