Tab focus example

This example shows you how to use the tabfocus plugin. You can tab and shift+tab to and from the editor below.

Input 1:
Input 2:

HTML source

Below is all you need to setup the example.

<script type="text/javascript" src="<your installation path>/tiny_mce/tiny_mce.js"></script>
<script type="text/javascript">
// Initialize TinyMCE with the tab_focus option
tinyMCE.init({
	mode : "textareas",
	theme : "advanced",
	plugins : "tabfocus",
	theme_advanced_buttons1 : "bold,italic,underline,separator,strikethrough,justifyleft,justifycenter,justifyright,justifyfull,bullist,numlist,undo,redo,link,unlink",
	theme_advanced_buttons2 : "",
	theme_advanced_buttons3 : "",
	theme_advanced_toolbar_location : "top",
	theme_advanced_toolbar_align : "left",
	theme_advanced_statusbar_location : "bottom",
	tab_focus : ':prev,:next'
});
</script>

<form method="post" action="somepage">
	<textarea name="content" style="width:100%">
	</textarea>
</form>