How to set focus to #document inside an iframe using javascript ?
Tried the below code but not working
document.getElementById('iframe').focus()
How to set focus to #document inside an iframe using javascript ?
Tried the below code but not working
document.getElementById('iframe').focus()
You can do something like this:
var iframe = document.getElementById("myFrame");
var elmnt = iframe.contentWindow.document.getElementById("elementId");
elmnt.focus();