JSFiddle - React, Tailwind, and code Playground
HTML
<div class="elements">This is text</div>
JavaScript
jQuery.fn.extend({
turn_red: function () {
return this.each(function () {
this.style.color = 'red'
});
}
});
$('.elements').turn_red(); // sets color to red