How to change focus from iframe?

Got the code that loads the field input, and then below iframewith textarea... The problem is that the focus should be in the field inputwhen the page loads, but it always skips to textarea, because iframe loads the second ...

How do I focus on the first element of the page?

+1
source share
1 answer

Put this inside the iframe code.

<script language="text/javascript">
window.parent.document.getElementById("idOfInput").focus();
</script>
+1
source

All Articles