I have an iframe which I include on my page.
<iframe scrolling="no" src="https://xx.com/" ></iframe>
xx.com doesn't allow cross-origin ( I don't remember how exactly is this parameter called, but I can't really access contents of iframe)
So what are my options to capture a keydown event which happens within this iframe? I tried
`$('iframe').keydown(function(e){console.log(1)});`
But didn't work(