I'm tring to change breadcrumbs arrow > (>) to » using jquery.
<div id="breadcrumbs">
<a title="Go to cbc." href="http://cbcsales.co.il/newsite" class="home">Home</a>
> testpage</div>
I tried using following jquery. But tag is missing. It is replace <a> tag > character. Help me. Thanks
jQuery("#breadcrumbs").text(function(index, text) {
return text.replace('>', '»');
});
text.replace('>', '»')?