JSFiddle - React, Tailwind, and code Playground

by chrisguzman

HTML

<div id="div1"><h2>Let jQuery AJAX Change This Text</h2></div>
<button>Get External Content</button>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>

JavaScript

var arr = { City: 'Moscow', Age: 25 };


      $.ajax({
    url: 'https://worker-aws-us-east-1.iron.io/2/projects/5497412057ace50009000055/tasks/webhook?code_name=firebase_email_webhook&oauth=zpDTB-TWR68Dh-krsuDWmqJjacc',
    type: 'POST',
    data: JSON.stringify(arr),
    contentType: 'application/json; charset=utf-8',
    dataType: 'json',
    async: false,
    success: function(msg) {
        alert(msg);
    }
});