JSFiddle - React, Tailwind, and code Playground

by musicreader

JavaScript

var xml_http=new XMLHttpRequest();
xml_http.open("GET","https://screencast-o-matic.com/u/VyZD/MR5_test");
xml_http.onreadystatechange=function(){
	if(xml_http.readyState==4){
  	alert(xml_http.status);
   if(xml_http.status==200){
   		alert("test");
   }else{
   		alert("error");
   }
  }
};
xml_http.send();