// John traded a Book for US$ 50.
{
"@context": "http://schema.org",
"@type": "TradeAction",
"agent": {
"@type": "Person",
"name": "John"
},
"object": {
"@type": "Book",
"name": "Outliers"
},
"price": "50",
"priceCurrency": "USD"
}
echo json_encode(array('img' => $img, 'img_title' => $img_title));
exit;
jQuery.ajax({
type: "POST",
url: "/send.php",
data: arrr,
success: function(data){
var result = jQuery.parseJSON( data );
jQuery('.kit_box img').attr('src', result.img);
jQuery('.kit_box img').attr('title', result.img_title);
}
});