data-video
attribute containing the new video URL.src
when a button is clicked.Yes, you can use Webflow buttons or thumbnails to change the video in a video player by updating an embedded video’s src dynamically using JavaScript and Webflow’s attributes. Here's how to set it up:
<iframe id="videoPlayer" src="https://www.youtube.com/embed/VIDEO_ID?rel=0" frameborder="0" allowfullscreen></iframe>
VIDEO_ID
with the default video you want to display.data-video
https://www.youtube.com/embed/NEW_VIDEO_ID?rel=0
Go to Page Settings > Custom Code (Before </body>
section) and add:
```javascript
document.querySelectorAll("[data-video]").forEach(button => {
button.addEventListener("click", function () {
document.getElementById("videoPlayer").src = this.getAttribute("data-video");
});
});
```
You can dynamically change a Webflow video player using buttons or thumbnails by setting a data-video attribute and adding a small JavaScript snippet that updates the iframe’s src
.