JSFiddle - React, Tailwind, and code Playground

by Kyle Shen

HTML

<div id='container'></div>

JavaScript

var site='http://www.systemlead.com';
var yql = 'http://query.yahooapis.com/v1/public/yql?q=' + encodeURIComponent('select * from html where url="' + site + '"') + '&format=xml&callback=cbFunc';
//alert(yql);
$('#container').html(yql);