JSFiddle - React, Tailwind, and code Playground

by STHayden

HTML

<div>Expected value: <b>pass</b></div>
<div>Actual value: <b id="ret">loading...</b></div>

JavaScript

var tiny_xhr = function(m,u,c,d){with(new XMLHttpRequest)onreadystatechange=function(){readyState^4||c(this)},open(m,u),send(d)};

  tiny_xhr('get', '.', function (xhr){
  console.log(xhr)
     document.getElementById( "ret" ).innerHTML = "pass";
  });