Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm very new to javascript and trying to use Twitter bootstrap to get a good looking website up and running quickly. I know this has something to do with jquery, but I'm not sure how to stop my video when I push the close button or the close icon.

Can someone explain how I can get my video to stop playing because even when I close the window, I can still hear it in the background.

<!-- Button to trigger modal -->
    <a href="#myModal" role="button" class="btn" data-toggle="modal"><img src="img/play.png"></a>

<!-- Modal -->
  <div id="myModal" class="modal hide fade" tabindex="-1" role=labelledby="myModalLabel" aria-hidden="true">
    <div class="modal-header">
      <button type="button" class="close" data-dismiss="modal" aria>×</button>
      <h3 id="myModalLabel">I am the header</h3>
    </div>
    <div class="modal-body">
      <p><iframe width="100%" height="315" src="http:com/embed/662KGcqjT5Q" frameborder="0" allowfullscreen></iframe></p>
    </div>
    <div class="modal-footer">
      <button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
    </div>
  </div>
share|improve this question

3 Answers

up vote 3 down vote accepted

There is a nice proper way of doing this - see the comments in the approved answer to this post.

Couldn't get that working first time round myself though, and was in a rush, so I did a rather horrible hacky bit of code which does the trick.

This snippet 'refreshes' the src of the embed iframe, causing it to reload:

jQuery(".modal-backdrop, #myModal .close, #myModal .btn").live("click", function() {
        jQuery("#myModal iframe").attr("src", jQuery("#myModal iframe").attr("src"));
});
share|improve this answer
Thanks @rob. I need to look more into this along with javascript to understand how these function. I tried inserting the code you mentioned above between some <script> tags but it didn't do anything to my website. It must be a naming issue that I need to learn about – catchmikey Dec 10 '12 at 12:36
Sorry was being a little lazy - have changed the above markup to match your HTML; should work now – RobCalvert123 Dec 10 '12 at 14:36
Thanks @rob, this worked great. I'm not sure where to post followups in the comments, but I also wanted to apply this to the close button. I add the following and it worked. <script type="text/javascript">jQuery(".modal-backdrop, #myModal .close").live("click", function() { jQuery("#myModal iframe").attr("src", jQuery("#myModal iframe").attr("src")); }); jQuery(".modal-backdrop, #myModal .btn").live("click", function() { jQuery("#myModal iframe").attr("src", jQuery("#myModal iframe").attr("src")); });</script> – catchmikey Dec 10 '12 at 15:07
Aye that'll do it, but a slightly neater way is to target all three at once with that original function - see above, I've edited to also include '#myModal .btn' in that first part. If I were you I'd also look at that post I referenced (which Ruslanas is referring to below) - that's a better way to do it. – RobCalvert123 Dec 10 '12 at 17:46
This method works in Firefox, but not in Chrome. Any suggestions? – TaiwoOster Mar 7 at 22:10

Here is a simple way I've found for having a video play in a modal window, and then stop playing on close.

Use the .html to load the iFrame with your video into the modal-body, when the modal is shown, and then replace the modal-body with nothing when it is hidden.

$('#myModal').on('show', function () { 
 $('div.modal-body').html('YouTube iFrame goes here');  
});
$('#myModal').on('hide', function () {
 $('div.modal-body').html('');
});

Here is a jsfiddle example:

http://jsfiddle.net/WrrM3/87/

share|improve this answer
$('#myModal').on('hide', function () {
    $('#video_player').stopVideo();
})
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.