(function() {
var ele_target = ‘bx_profile_widget’;
fetch(‘https://www.bondexchange.com/api/rapyd/social/widgets/91633/2’)
.then(response => response.text())
.then(data => {
var ele = document.getElementById(ele_target);
ele.contentDocument.body.innerHTML = data;
ele.style.height = ‘480px’;
ele.style.width = ‘330px’;
ele.style.border = ‘none’;
});
})();