JSFiddle - React, Tailwind, and code Playground
by Torwan
HTML
<div id="test">
</div>
JavaScript
var url ='https://www.narzedzia.pl/addon/userOrderListAjax/';var start = new Date().getTime();$.ajax({url: url,dataType: 'html',type: 'GET',success: function(data) {console.log(data);$('#test').empty();$('#test').html(data);var end = new Date().getTime();console.log( end - start );}});