- 7
- Posts
- 12
- Years
- Seen Sep 2, 2024
In my mind, when you hide a spoiler, it should stop the video playing
this can be achieved with the following simple code
this can be achieved with the following simple code
JavaScript:
window.addEventListener("click",e=>{
var t=e.target;
if (t.matches(".spoiler-block input.button")){
if (t.value.split(" ")[0]==="Show"){
[...t.closest(".spoiler-block").querySelectorAll("iframe")].forEach(f=>{
var oS = f.src;
f.src="";
f.src=oS;
})
}
}
});