Can we detect any events inside iframe where the src is from another domain.(eg: youtube)

can we detect any events like click, dblclick etc inside the iframe, where the iframe detail is a cross domain link.

 <script>
        var myFunction = (e) => console.log(e.type)
         $(document).ready(function(){
            $('#element')
                .keyup(myFunction)
                .keypress(myFunction)
                .blur(myFunction)
                .change(myFunction)
                .mouseover(myFunction)
                .dblclick(myFunction)
                .click(myFunction)
                .mouseleave(myFunction)
                .mouseenter(myFunction)
            });
                   
    </script>
<iframe id="element" width="560" height="315" src="https://www.youtube.com/embed/hT3j87FMR6M" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>