Focus on PDF(Viewer) in iFrame

Focus on PDF(Viewer) in iFrame

Hi,

i am very new in using jQuery. I've got a problem with the focus-function.

I have a iFrame with an PDF(Viewer) inside. To scroll the document it is necessary to click in it.

So i tried to set the focus by using jQuery on mouseover.


  1. <iframe id="iframeDocumentViewer" src="about:blank" width="100%" height="100%" onmouseover="SetFocus();"></iframe>


  1. function SetFocus() {

      $('#iframeDocumentViewer').focus();

    }


This doesn't work. I have no idea... Hope someone can help me.

Thanks.