Vimeo Swap

by sjmcpherson

HTML

<figure>
    <a href="#"><img src="http://harmoney-website.herokuapp.com/images/hm-video.jpg" alt="harMoney Video" /></a>
    <iframe src="//player.vimeo.com/video/95810934" width="460" height="260" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> 
              <figcaption>Watch your guide to lending without banks.</figcaption>
 </figure>

CSS

body{margin:0;}
figure{margin:0;position:relative;}
figure a{position:absolute;}

JavaScript

var d = document;
var videos = d.getElementsByTagName("figure");

for(a in videos){
    console.log(a);
    a.addEventListener('click',function(e){
        var that  = e.target;
        that.delete;
    })
}