JSFiddle - React, Tailwind, and code Playground

by isimpledesign

HTML

<iframe id="frame" src="http://player.vimeo.com/video/12054305?autoplay=1&loop=1" width="640" height="374" frameborder="0"></iframe>

<a href="#" id="pause">Pause</a>

JavaScript

$(function(){
    
   
    $("#pause").click(function(){
        
       
        //i need to pause the vimeo video here
        $("#frame").click();
        
        
    });
    
    
});