JS-JSONP
function show(data) {
console.log('name: ' + data.name);
console.log('price: ' + data.price);
}
window.onload = function() {
var url = 'https://codepen.io/taquaki/pen/rYgdJx.js';
var script = document.createElement('script');
script.setAttribute('src', url);
document.getElementById('cnt').appendChild
(script);
}