JSFiddle - React, Tailwind, and code Playground

by lukemartin

HTML

<div data-module="cat"><h1>Cat</h1></div>
<div data-module="dog"><h1>Dog</h1></div>

JavaScript

(function($) {
    Window.Modules = (function() {
        $('[data-module=cat]').each(function() {
            $(this).find('h1').css('color', 'blue');
        });
        $('[data-module=dog]').each(function() {
            $(this).find('h1').css('color', 'red');
        });
    }());
}(jQuery));