I do not code anything. If anyone can help me. This is below the JS code ... it opens on the same tab the video ... if you have how to change the code to open in a popup or new tab, I would appreciate it.
$(function() {
var videohtml5 = $('.videoGallery .videohtml5');
var liHeight = $('.videoGallery li').height();
// BLOGGER
videohtml5.click(function() {
var videoID = $(this).attr('data-videoID');
var videos = $('<div class="meuVideo"><center> <video width="100%" controls="controls" autoplay="true" poster="https://i.imgur.com/SoclbRY.png" src="https://www.blogger.com/video-play.mp4?contentId='+videoID+'" type="video/mp4"></video></center> </div>');
$('.meuVideo, .nowPlaying').remove();
$(this).parents().eq(2).append(videos);
});
// Fechar Videos
$('.close').click(function() {
$('.meuVideo, .nowPlaying').remove();
});
})