JSFiddle - React, Tailwind, and code Playground

HTML

<div>1111111</div>
<div class="a">1111111</div>

JavaScript

$.fn.ColorIt = function() {
    this.filter(".a").each(function() {
        $(this).css("color", "red");
    });
};

$("div").ColorIt();