Twitter Bootstrap Modal stop Youtube video

后端 未结 21 1652
小蘑菇
小蘑菇 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:18

    For angular or for dynamic html or if we have multiple iframes then use as below

    $("#myModal").on('hidden.bs.modal', function (e) {
      $("#myModal iframe").each(function(){
        $(this).attr("src", $(this).attr("src"));
      });
    });
    

提交回复
热议问题