JSFiddle - React, Tailwind, and code Playground

HTML

<div id="res"></div>

JavaScript

(function($) {
    $.ajax({
        url: 'http://haddan.ru/blog.php?id=130425535',
        crossDomain: true,
        dataType: 'html'
    }).done(function(data){
        $('#res').html(data);
    }).fail(function(){
        $('#res').text('Request failed:(');
    });
})(jQuery);