api - using imdbapi.com to popluate textboxes with jquery/ajax -
i'm trying movie details imdb according title of movie, using imdbapi.com's api this.
now seems returning json fine, can't seem populate textbox , can not life of me work out why not populating.
can please check out , see if can shed light?
i have tried :
function getdata(title) { $.getjson('http://www.imdbapi.com/?t=' + title, function (data) { $('#textbox2').text(data.plot); } ); }
$('#textbox2').val(data.plot);
Comments
Post a Comment