success: function(data){
if(!data.code){
var title = data[0].title;
var genre = data[0].genres[0];
var poster = data[0].poster.imdb;
var url = data[0].imdb_url;
var plot = data[0].plot;
var rlseyr = data[0].year;
var cdiv = $('#imdbcontents');
var thehtml = "<img src=\""+poster+"\" class=\"floatright\">";
thehtml += "<h2>"+title+"</h2>";
thehtml += "<p class=\"genre\">"+genre+" - first aired in "+rlseyr+"</p>";
thehtml += "<p>"+plot+"</p>";
thehtml += "<p><a href=\""+url+"\" target=\"_blank\">View on IMDb →</p>";
cdiv.html(thehtml);
} else {
alert(data.error);
}
}