WebPublisher/JavaScript & jQuery
iframe video pause
amanda
2023. 10. 31. 10:14
$(function(){
$('.close').click(function(){
$('iframe').attr('src', $('iframe').attr('src'));
});
});
*참고
Stop all playing iframe videos on click a link javascript
I have a list of iframe videos in my webpage. <iframe width="520" height="360" src="http://www.youtube.com/embed/2muxrT5_a6E" frameborder="0" allowfullscreen></iframe> <iframe width...
stackoverflow.com