Motto is to set/update(ajaxified) a DIV background image.
$.getJSON("https://itunes.apple.com/search?term=" + searchTerm + '&limit=1' + '&callback=?',
function(data) {
$.each(data.results, function() {
var art = this.artworkUrl100;
$('.photo').parent().css('background-image', 'url(' + art + ')');
}
}
On HTML i've this:
<div id="results" class="photo"></div>
.photodiv?