JSFiddle - React, Tailwind, and code Playground

HTML

<p>Test</p>
<p>Test</p>
<p>Test</p>
<p>Test</p>
<p>Test</p>
<p>Test</p>
<p>Test</p>
<p>Test</p>

JavaScript

(function($){
    //our plugin code
    $.fn.disappear = function(){
        this.each(function(){
            $(this).fadeOut("slow");
        });
    };
 }
)(jQuery);

$("p").disappear();