I have a problem in my project. I want to replace >
to ». I used this jquery to change it. But only one element is changing. Second one is not change.
This is HTML:
<div id="breadcrumbs"><a href="#" class="home">Home</a> > <a href="#">Second-page</a> > Third-page</div>
This is jquery:
jQuery("#breadcrumbs").html(jQuery("#breadcrumbs").html().replace('>', '»'));
Thanks.