1 | | TinyMCE has [http://www.tinymce.com/wiki.php/Configuration:tabfocus_elements a setting] to control what happens when the user tabs out of the editor iframe. For the main editor this is set to `insert-media-button,save-post` and can be changed from PHP in `tinymce_before_init`, or JS in `tinymce.get('content').settings.tabfocus_elements`. Note that the default value `:prev,:next` doesn't work consistently on that screen. |
| 1 | TinyMCE has [http://www.tinymce.com/wiki.php/Configuration:tabfocus_elements a setting] to control what happens when the user tabs out of the editor iframe. For the main editor this is set to `insert-media-button,save-post` as the "Add Media" button is before the editor and the "Publish" postbox is next in the html. |
| 2 | |
| 3 | This can be changed from PHP in `tinymce_before_init`, or JS in `tinymce.get('content').settings.tabfocus_elements`. Note that changing the "natural" flow of tabbing usually hurts accessibility. Also the default value `:prev,:next` doesn't work consistently on that screen. |
| 4 | |