I am trying to remove an element from a volusion page where I don't have access to large parts of the code. I can remove some stuff using jquery, but there are elements outside of the span I can't get rid of.
<span class="PageText_L329n">Quantity in Stock</span>:6<meta itemprop='availability' content='InStock'>
I can use
$("span.PageText_L329n").remove();
to get rid of the "Quantity in Stock" section, but the :6 doesn't have its own container. The parent div that this is sitting in has a lot of other stuff in it I don't want to touch. Is there a way to remove this span and the following several characters? Or separately select the :6 and remove it without a container?