I have this:
<span class="name"><span class="gost">Yahoo</span>, </span>
I tried something like this, but no luck:
$("span.name").html(
$(this).replace(/,/g, '')
);
I have this:
<span class="name"><span class="gost">Yahoo</span>, </span>
I tried something like this, but no luck:
$("span.name").html(
$(this).replace(/,/g, '')
);
v = $("span.name").html().replace(/,/g,'');
$("span.name").html(v);
Try that