JSFiddle - React, Tailwind, and code Playground

by neal_fletcher

HTML

<span class="facelike" src="//player.vimeo.com/video/107800720"></span>

JavaScript

$(document).ready(function () {
    setTimeout(function () {
        $("span.facelike").each(function () {
            var url = $(this).attr("src");
            $(this).replaceWith('<iframe src=' + url + ' width="500px" height="350px" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen>');
        });
    }, 2000);
});