JSFiddle - React, Tailwind, and code Playground

by dannycabrera

HTML

<link rel="stylesheet" href="http://dannycabrera.com/jsfiddle/toastr/toastr.min.css">
<script src="http://dannycabrera.com/jsfiddle/toastr/toastr.js"></script>
 <input id="test" type="button" value="test" />

JavaScript

$(document).ready(function () {
    $("#test").click(function () {
        toastr.options.onFadeIn = function () { alert("onFadeIn"); };
        toastr.options.onFadeOut = function () { alert("onFadeOut"); };
        toastr.info('Are you the 6 fingered man?');
    });
});