JSFiddle - React, Tailwind, and code Playground
by Hari Menon
HTML
<script src="https://raw.github.com/padolsey/jQuery-Plugins/master/cross-domain-ajax/jquery.xdomainajax.js"></script>
<div></div>
JavaScript
$(function(){
$.ajax({
debugger;
url: 'http://www.dhl.com/content/g0/en/express/tracking.shtml?brand=DHL&AWB=3641172813%0D%0A',
type: 'GET',
success: function(res) {
var statusText = $(res.responseText).find('#summarystatus').text();
alert(statusText);
}
});
});