I have this iframe where I embedded a youtube video but the issue is that onclick handler does not work on this iframe. Another issue is that I want to write something on the iframe but that does not seem to be happening even if we insert a header inside iframe. Here is the code that i have . The code is in reactjs .
<div onClick={this.onClick} className="movieItem">
<iframe width="400" height="300" src={youtubeVideoUrl}>
</iframe>
<span className="title"> {movie.EventTitle}</span>
</div>