<div class="breadcrumbs">
<a title="Go to Page." href="http://www.domain.com/dev" class="home">Home Page</a> > <a title="Go to the News category archives." href="http://www.domain.com/dev"/topics/news/" class="taxonomy category">News</a> > <span>News</span>
</div>
In the above example there are 2 seperators, I'm using the following jQuery('.breadcrumbs .category').remove();
to remove the link to the News but this leaves me with
<div class="breadcrumbs">
<a title="Go to Page." href="http://www.domain.com/dev" class="home">Home Page</a> > > <span>News</span>
</div>
What would be the best way to remove one of the >
?