I have code
<div>
<a href="#"></a> »
<a href="#"></a> »
<a href="#"></a> »
<a href="#"></a> »
<a href="#"></a>
</div>
How i can disable or delete this simbol - "»" ?
I use this code
text = $('div').html();
text = text.replace('»','');
$('div').html(text);
but hi does not wokr correctly. The last symbol is displaing.
Another way?