JSFiddle - React, Tailwind, and code Playground

by Shaunak Deshpande

HTML

<p class="mod-articles-category-readmore"> <a class="mod-articles-category-title">
    <svg><!--svg content--></svg>
    <!--whitespace created by Joomla-->		Weiterlesen													
  </a>

</p>

JavaScript

$("p.mod-articles-category-readmore a").each(function () {
     var $el = $(this);
     $('svg', $el).remove();
     $(this).html($el.html());
 });