JSFiddle - React, Tailwind, and code Playground
by isherwood
HTML
<div class='category-static-links'>
<a href='#'>Blackjack</a> |
<a href='#'>Craps</a> |
<a href='#'>Poker</a> |
<a href='#'>Roulette</a> |
<a href='#'>Slots</a>
</div>
CSS
.category-static-links a {margin-right: 8px;}
JavaScript
$('.category-static-links').contents().filter(function () {
return this.nodeType === 3;
}).remove();