4

I am trying to play video in Modal Pop up, it works fine in Chrome but not in Firefox.

Below is the Code:

<a href="#video" data-toggle="modal" id="clickForVideo">
  Click Me
</a>

==========

Modal poop up code:

==========

<div class="modal fade" id="video" role="dialog" style="display:none;">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-body modal-video">
        <iframe width="560" height="315" ></iframe>
      </div>
      <button type="button" class="btn modal-close" data-dismiss="modal">X</button>
    </div>
  </div>
</div>

==========

JS code:

==========

$(document).on("click", '#clickForVideo', function() {
  var src = '//www.youtube.com/embed/itTskyFLSS8?feature=player_embedded&autoplay=1';
  $('#video').modal('show');
  $('#video iframe').attr('src', src);
  $(".modal-video").fitVids();
});

==========

Ankush Kataria
  • 323
  • 3
  • 13

3 Answers3

5

Adding this css code block in the page you have that modal will sort this issue.

.modal.fade .modal-dialog{transform:none !important;}
Arkadas Kilic
  • 2,192
  • 2
  • 17
  • 15
  • I am trying to display webcam area on model dialog using https://pixlcore.com/demos/webcamjs/demos/basic.html. I have already try with by adding .modal.fade .modal-dialog{transform:none !important;} on my page but still not able to show webcam area. – Piyush Chaudhari Jul 02 '16 at 03:50
  • I've been searching for an hour and this was the solution! I have an tag that was not displaying the Windows Media Player and adding this style directly to the .modal-content DIV tag solved the problem. – Phil Nicholas Jul 27 '16 at 02:14
2

I have encountered the same issue, and managed to fix it by setting wmode = transparent .

See this answer for more.

Community
  • 1
  • 1
gscragg
  • 145
  • 1
  • 7
0

Video not working in Modal popup due to Firefox plugin Shockwave Flash.

When I inactive the plugin everything works fine.

Below are the links for more description to the answer:

https://support.mozilla.org/en-US/kb/fix-common-audio-and-video-issues

https://support.mozilla.org/en-US/kb/troubleshoot-issues-with-plugins-fix-problems

Ankush Kataria
  • 323
  • 3
  • 13
  • Hi ankush, my name is nikhil and I am also facing the same. issue. I just want your help to know where I may be wrong. So Can you please give me any contact details of yours. Thanks. – Nikhil Agrawal Apr 17 '14 at 12:44
  • Hi Nikhil, Sorry I missed your comment. My email address is jainankush12@gmail.com – Ankush Kataria Jul 05 '14 at 13:51