I have several tags like this:
1 Comment
I would like to do this reversing the order of the
You almost had it, except you're not doing anything with the result
$('.classCover').each(function(){ $(this).text($(this).text().split(' ').reverse().join(' ')); });