JSFiddle - React, Tailwind, and code Playground

HTML

<div>
  <p>This is some <span>highlighted</span> text</p>
  <p>Want some <span>more</span>!</p>
</div>

JavaScript

$.fn.highlight = function() {
  this.css({background: "yellow"});
};

$("span").highlight();