JSFiddle - React, Tailwind, and code Playground

by s4ty

HTML

<div id="a"></div>

JavaScript

$(function () {
    /*
    * DOM - Ready: Das Erste mal
    *
    *
    */
    $(function (){
    /*
    * DOM - Ready: Das Zweite mal
    *
    *
    */        
        $('#b').click(function (){
            alert('test');
        })        
    })   
    /*
            Hier Plugins etc.
            
     */           
    $('#a').append('<div id="b">b</div>')
})