JSFiddle - React, Tailwind, and code Playground

by dain

JavaScript

$.ajax({
  type: 'GET',
  url: 'http://www.html5rocks.com/en/tutorials/file/xhr2/',
  success: function(response) {
    var article = $(response).find('article').html();
    $('body').html(article);
  } 
});