JSFiddle - React, Tailwind, and code Playground

by shaneburgess

HTML

<button id="getAjax">Ajax Call</button>

JavaScript

$("#getAjax").click(function(){
       $.ajax({
				url: 'http://jsfiddle.net/echo/jsonp/?message=Hello'
		}).done(function(data) {
							alert('done');
		});
});