Twitter Bootstrap Modal stop Youtube video

后端 未结 21 1754
小蘑菇
小蘑菇 2020-11-27 11:57

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

21条回答
  •  北荒
    北荒 (楼主)
    2020-11-27 12:16

    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"));
    });
    

提交回复
热议问题