diff --git a/plugins/lazyYT/assets/javascripts/lazyYT.js b/plugins/lazyYT/assets/javascripts/lazyYT.js index 566135495c7..3df9eb1f52a 100644 --- a/plugins/lazyYT/assets/javascripts/lazyYT.js +++ b/plugins/lazyYT/assets/javascripts/lazyYT.js @@ -33,7 +33,9 @@ }) .html('

') .addClass('lazyYT-image-loaded'); - $el_title = $el.find("p.lazyYT-title"); //get reference to the current container title element + + var $el_title = $el.find("p.lazyYT-title"); //get reference to the current container title element + $.getJSON('https://gdata.youtube.com/feeds/api/videos/' + id + '?v=2&alt=json', function (data) { $el_title.text(data.entry.title.$t); });