, , , . , "onchange_callback" init:
tinyMCE.init({..., onchange_callback: 'updateSelectionBookmark', ...});
updateSelectionBookmark, - , (: http://tinymce.moxiecode.com/wiki.php/Configuration:onchange_callback). updateSelectionBookmark :
function updateSelectionBookmark (ed) {
ed.updatedSelectionBookmark = ed.selection.getBookmark(1);
}
, .
, :
ed.selection.moveToBookmark(ed.updatedSelectionBookmark);
HTML, ( mceInsertRawHTML).
, -, .
( ): , TinyMCE 3.2.2.3, 3.4.4 IE9. , , . ( ) . , , . onchange_callback onEvent event:
tinyMCE.init({
...,
setup: function (ed) {
ed.onEvent.add(function (ed, e) {
ed.updatedSelectionBookmark = ed.selection.getBookmark(1);
});
},
...
});
updateSelectionBookmark onchange_callback. onEvent , onChange, , , , .
moveToBookmark, , . IE9, Chrome, FF6, / /.