I had a similar question posted previously but this is a little bit different. I am looking to remove the colon from the below price code utilizing jQuery.
<font class="pricecolor colors_productprice">
<div class="dealtext"></div>
: $58.05
</font>
So far I believe it could be somewhat accomplished like this, I just need another set of eyes to correct it:
$('.pricecolor:contains(" : ")').remove(colon??);
It still doesn’t seem right, perhaps I need a var set with a get()?
1 Answer