$(document).ready(function () {
$('video').on('click', function () {
var video = $(this).attr('src');
$('#myModal').on('show.bs.modal', function () {
$(".img-responsive").attr("src", video);
});
});
});
function StopVideo() {
var vid3 = document.getElementById("video");
vid3.pause();
}