JSFiddle - React, Tailwind, and code Playground

by arpecop

HTML

<div id="result">
1
</div>

JavaScript

function go() {
  $.getJSON("//app.arpecop.com/la/zanimai", {
						 _ass:'1',
             bg:'1'
					})
					.done(function(json) {
          console.log(json)
          	$('#result').append(JSON.stringify(json))
          })
					.fail(function(jqxhr, textStatus, error) {
          console.log(error)
          });
          
          }
          
          
 for (var i = 0; i < 100; i++) {
					go();
				}