JSFiddle - React, Tailwind, and code Playground

by zeze

HTML

<html>
<body>
<div id="videolist">
        <img class="thumbs" rel="17631561" alt="title1" />
        <img class="thumbs" rel="51430433" alt="title2" />
</div>
</body>
</html>

JavaScript

$(function(){
    $("img.thumbs").each(function(index){
    var vimeoVideoID = $(" .thumbs").attr("rel");
    $.getJSON('http://www.vimeo.com/api/v2/video/' + vimeoVideoID + '.json?callback=?', {format: "json"}, function(data) {
        $(".thumbs").attr('src', data[0].thumbnail_small);
        });
    });
});