I have a div with an img and an iframe video. I want to play the video just after click over the image. (its not valid change url for ux purposes)
My js code is not working as expected. The youtube video does not start.
$(".youtube-video img").click(function (e) { 
  $(".youtube-video .video").trigger('click');
    ev.preventDefault();
});<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.7.5/angular.min.js"></script>
<div class="youtube-video">
    <img src="http://i.ytimg.com/vi/<?php echo $video1 ?>/maxresdefault.jpg">
    <div class="video">
        <iframe frameborder="0" src="https://www.youtube.com/embed/<?php echo $video1 ?>" allowfullscreen="" style=""></iframe>
    </div>
</div> 
     
    