Reputation:
We have a RTE editor based on htmlarea which consists of content with editmode enabled inside an iframe. The question is how to automatically bring the focus into the editor?
Upvotes: 0
Views: 947
Reputation: 159618
Where the id
of the IFRAME
is myRTE
:
var iframe = document.getElementById("myRTE");
if ( iframe && iframe.contentWindow )
iframe.contentWindow.focus();
Upvotes: 2