hey guys, what am I doing wrong here?
<div class="element">
<span>N/A, Category</span>
</div>
I simply want to get rid of every occurrence of N/A,
$('.element span').each(function() {
console.log($(this).text());
$(this).text().replace('N/A, ', '');
});
The logged text is the text inside of the span so the selector is okay. What am I doing wrong here?
replacereturns a string, it does not perform in place changes. And even then, the text would be set to the element automatically. – Felix Kling May 30 '11 at 13:58