Created
September 8, 2019 16:24
-
-
Save cuonghuynh/400cc1e350df0a36e84182031b4dfb05 to your computer and use it in GitHub Desktop.
The video autoplay when the modal is shown and stop as the modal is closed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var src = $('#myModal iframe').attr('src'); | |
$('#myModal').on('show.bs.modal', () => { | |
$('#myModal iframe').attr('src', src); | |
}); | |
$('#myModal').on('hidden.bs.modal', () => { | |
$('#myModal iframe').attr('src', ''); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment