OMDB working example

by toubia95

HTML

<h1>Liste des films</h1>

<br />
<div id="badge"></div>

CSS

/* utiliser une api de traduction ?
http://www.microsoft.com/web/post/using-the-free-bing-translation-apis
http://api.yandex.com/translate/
*/

JavaScript

// source : http://www.imdb.com/
// json depuis l'api : http://www.omdbapi.com/?i=tt1285016
var imdbarray = ["tt1285016", "tt1877832", "tt0105911"];
var imdbId = "tt1285016";

$.each(imdbarray, function (index, value) {
    $.ajax({
        type: 'GET',
        url: 'http://www.omdbapi.com/?i=' + value,
        dataType: 'jsonp',
        success: function (json) {
            var result = '<p><strong>' + json.Title + '</strong>' + ' - ' + json.Year + '' + ' - ' + json.imdbID + ' - rate: ' + json.imdbRating + '</p>';
            $('#badge').append(result);
        }
    });
});