How to auto-focus RTE editor inside firefox?

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

Answers (1)

Shog9
Shog9

Reputation: 159618

Where the id of the IFRAME is myRTE:

var iframe = document.getElementById("myRTE");
if ( iframe && iframe.contentWindow )
   iframe.contentWindow.focus();

Upvotes: 2

Related Questions