JSFiddle - React, Tailwind, and code Playground
JavaScript
/**
* craftyclicks.co.uk
*/
var xhr = new XMLHttpRequest(),
url = 'http://pcls1.craftyclicks.co.uk/js/rapidaddress?postcode=callback=_cp_instances%5B1%5D.handle_js_response&callback_id=0&key=c715b-20fca-d60e9-00c2f';
xhr.open('GET', url, true);
xhr.onload = function(e){
console.log(e);
console.log(this.responseText);
}
xhr.send();