Close Vimeo Video

On this page I have a Vimeo video http://drinkeatplay.com/winefest/ I want to have a “close” link under the video and have the video disappear. I tried using jQuery hide but that lef the audio going and hid the video but did not remove it from the page.

Any suggestions on how I can completely remove the video with a close link?

Hi there,

You can use:

var elem = document.getElementById("your-vimeo-video");
elem.parentNode.removeChild(elem);

Here’s a demo.

This worked great…thank you!