I\'m using TinyMCE for a textarea on a page but it doesn\'t play nice in the tabbing order of the other elements.
I can use the following code to capture when I tab
If you're using tinymce with JQuery. The following will work
$("#id_of_textarea").tinymce().focus();
You can only do this after the editor has initialized though and so you may need to wait on one of its initialization events.