movies.js 522 B

1234567891011121314
  1. // List movies from kids-in-mind.com
  2. var cbfunc = function (data) {
  3. globaldata= data;
  4. var list = data.query.results.movie;
  5. list.forEach(function (item) {
  6. console.log(item.title + ' [' + item.rating.MPAA.content + ']');
  7. });
  8. phantom.exit();
  9. };
  10. var el = document.createElement('script');
  11. el.src = 'http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20movies.kids-in-mind&format=json&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys&callback=cbfunc';
  12. document.body.appendChild(el);