JSFiddle - React, Tailwind, and code Playground

by Matt Hopkins

HTML

<h4 id="status">Loading...</h4>

JavaScript

/*
$(document).ready(function() {
    $.ajax({
        type: "POST",
        url: 'https://naturalsubsistence.com/coupons/generator.php',
        data: {email:"[email protected]", product:"ginseng"},
        success: function(response) {
            $('#status').html(response);
            console.log(response);
        }
    });
});
*/