JSFiddle - React, Tailwind, and code Playground
HTML
<div id="result">loading ...</div>
CoffeeScript
$.ajax(
url:"/echo/html/"
type: "POST"
timeout: 1
data:
html: "<h1>hello</h1>"
delay: 3
)
.fail (jqXHR)->
console.log jqXHR
$("#result").text(JSON.stringify(jqXHR))
.done (r)->
$("#result").html r