Home / Comments / Vimeo Autoplay Unmute (Homepage)
Duplicate Snippet

Embed Snippet on Your Site

Vimeo Autoplay Unmute (Homepage)

Richard Hersperger
<10
Code Preview
php
<?php
document.addEventListener("click", function () {
  const iframe = document.querySelector("iframe[src*='vimeo.com']");
  if (!iframe) return;
  iframe.contentWindow.postMessage(
    JSON.stringify({
      method: "setVolume",
      value: 1
    }),
    "*"
  );
  iframe.contentWindow.postMessage(
    JSON.stringify({
      method: "play"
    }),
    "*"
  );
}, { once: true });

Comments

Add a Comment