JSFiddle - React, Tailwind, and code Playground

by chiragvidani

HTML

<input type='button' value='Call' id='btnCall' />

JavaScript

(function () {
    var custom1 = {
        CallChirag: function () {
            alert('Chirag called');
        }
    };

    window['custom1'] = custom1;
})();
$(function () {
    $('#btnCall').click(function () {
        custom1.CallChirag();
    });
});