I had added a video to my model popup but am wondering how can I make the video stop once the user clicks close. Is that possible with the video running off Youtube?
Am having the same challenge as @mktgmeg.
I added a youtube video to my model popup but the video keeps on playing after the modal is closed. Is there a way to stop the video from playing after exiting the modal window?
And thanks for the great help here, its been awesome.
Hey @mktgmeg and @Busayo_Kupoluyi you can check out this info on how to stop the video using jquery: javascript - Stop a youtube video with jquery? - Stack Overflow
Thanks everyone for the follow up!
Thanks very much for this article. It helped me fix the modals on my site.
Sadly I figured today out that the youtube videos still continue to play after closing it on IE9. Is there any way to add some java code that stops the videos as well on IE9? Or is my only option to make the site display the videos without modals on IE9?
Usually I wouldnāt care about an older version of Internet Explorer but Iām building this site for a customer at work and they themselves donāt use the newest versions of Windows.
This is the link to my published site http://ausbildung-test.webflow.com/
Thanks very much in advance for your help!
This is currently the Java code Iām using to stop the video:
$(ā.cindy-modalā).click(function(e) {
e.preventDefault();
$(ā.cindy-modal-backgroundā).fadeIn();
});
$(ā.cindy-modal-closeā).click(function(e) {
e.preventDefault();
$(ā.cindy-modal-backgroundā).fadeOut();
stopthevideo();
});
I found a website (http://stackoverflow.com/questions/2128535/stop-a-youtube-video-with-jquery)
There I found this piece of code, which I donāt really know how to correctly implement so I can test it in IE9:
$(ā#playerIDā).get(0).stopVideo();
or this which I donāt know how to implement either:
var myPlayer = document.getElementById(āplayeridā);
myPlayer.stopVideo();
You need this script to put on your Custom Code on webflow.
<script>
function stopthevideo(){
var myPlayer = document.getElementById('my-video');
myPlayer.stopVideo();
}
</script>
Thanks pastiwiawa for the help. I tried your code three different ways and none of the ways I tried, stopped the video on IE9 : (
This is what I tried (Iāve cut out all the unnecessary repeating parts):
<script type="text/javascript">
$(document).ready(function() {
$('.cindy-modal').click(function(e) {
e.preventDefault();
$('.cindy-modal-background').fadeIn();
});
$('.cindy-modal-close').click(function(e) {
e.preventDefault();
$('.cindy-modal-background').fadeOut();
stopthevideo();
});
});
</script>
<script>
function stopthevideo(){
var myPlayer = document.getElementById('my-video');
myPlayer.stopVideo();
}
</script>
this as well
<script type="text/javascript">
$(document).ready(function() {
$('.cindy-modal').click(function(e) {
e.preventDefault();
$('.cindy-modal-background').fadeIn();
});
$('.cindy-modal-close').click(function(e) {
e.preventDefault();
$('.cindy-modal-background').fadeOut();
stopthevideo();
});
function stopthevideo(){
var myPlayer = document.getElementById('my-video');
myPlayer.stopVideo();
}
});
</script>
and this
<script type="text/javascript">
function stopthevideo(){
var myPlayer = document.getElementById('my-video');
myPlayer.stopVideo();
}
$(document).ready(function() {
$('.cindy-modal').click(function(e) {
e.preventDefault();
$('.cindy-modal-background').fadeIn();
});
$('.cindy-modal-close').click(function(e) {
e.preventDefault();
$('.cindy-modal-background').fadeOut();
stopthevideo();
});
});
</script>
This I just tried too and it didnāt work
<script type="text/javascript">
function stopthevideo(){
var myPlayer = document.getElementById('my-video');
myPlayer.stopVideo();
}
$(document).ready(function() {
$('.bianca-modal').click(function(e) {
e.preventDefault();
$('.bianca-modal-background').fadeIn();
});
$('.bianca-modal-close').click(function(e) {
e.preventDefault();
$('.bianca-modal-background').fadeOut();
function stopthevideo(){
var myPlayer = document.getElementById('my-video');
myPlayer.stopVideo();
}
});
});
</script>
$(document).ready(function() {
var vsrc = $('#my-video').attr('src');
$('.cindy-modal').click(function(e) {
e.preventDefault();
$('#my-video').attr('src', vsrc);
$('.cindy-modal-background').fadeIn();
});
$('.cindy-modal-close').click(function(e) {
e.preventDefault();
$('#my-video').attr('src', '');
$('.cindy-modal-background').fadeOut();
});
});
Youāre welcome.
Thank you very much for your help! But I just tested it on IE9 and the video still continues playing. Iām giving up now. The customer Iām making this for will just have to accept that IE9 is not going to be fully supported.
Again, thanks very much for trying to help me solve this issue.
jQuery 1.X supports IE7 and 8
jQuery 2.X supports IE9 but not lower
Rewrite code into native javascript.
Thanks for the info. Iām not going to continue trying though, since its really not worth the struggle.
I had a look too how many people are actually still using IE9 ⦠and for May 2014 its 1.9%.
Thanks again for being so helpful though.
Find a solution regarding this issue ācant stop youtube video on ie9ā Iāll write here as solution specific to dennis problem.
1st. on webflow Custom Code, Add code to tag:
<script type="text/javascript" src="http://www.youtube.com/player_api"></script>
<script>
var player;
function onYouTubePlayerAPIReady() {player = new YT.Player('my-video');}
</script>
Notes that i set āmy-videoā there as you use it.
2nd. on webflow Custom Code, Add code before tag:
<script type="text/javascript">
$(document).ready(function() {
$('.cindy-modal').click(function(e) {
e.preventDefault();
$('.cindy-modal-background').fadeIn();
});
$('.cindy-modal-close').click(function(e) {
e.preventDefault();
$('.cindy-modal-background').fadeOut();
player.stopVideo();
});
});
</script>
Notes that I use āplayer.stopVideo();ā to stop the video
3rd. I use iframe instead embed, code is different
<iframe id="my-video" style="position: relative; height: 220px; width: 400px" src="http://www.youtube.com/embed/ufIVdMjPoVM?rel=0&enablejsapi=1"></iframe>
to replace your embed code completely
<embed id="my-video" height="450" name="my-video" type="application/x-shockwave-flash" width="800" src="http://www.youtube.com/v/ufIVdMjPoVM?rel=0&showinfo=0&list=UU0dnJMPsG_J_t0SvhI1kdlQenablejsapi=1&version=3&playerapiid=ytplayer" bgcolor="#000000" quality="high" allowscriptaccess="always" allowfullscreen="true">
I have tested here http://livehelper.webflow.com/
Cheers
Wow thanks very much for this : ) Iām at home now but I will try it straight away tomorrow morning at work.
Hi, pastiwibawa, I have built a pop up using the following method: [Tutorial] How to create a modal/pop-up in Webflow - Webflow Tips - Forum | Webflow
I have inserted a (Vimeo) video and would like it to automatically play and then close/reset once the movie has finished⦠Is this possible?
Yes!! This worked for me as well. Obviously change the classes to your own.
Make sure you add
id=āmy-videoā
within the iframe of the actual movie embed and also paste
`javascript:stopthevideo();
into the url field of the link settings for the āclose-modalā button