can anybody help me on making custome on enter function
i have tried this with no luck
what i need to doo is to save and reset the editor on enter press
i have tried this with no luck
CKEDITOR.instances.message2.on('key', function (event) {
if (event.keyCode == '13') {
alert('enter');
}}what i need to doo is to save and reset the editor on enter press

Re: Custom enter press
viewtopic.php?f=11&t=23869&p=61195&hilit=enter+key#p61195
config.extraPlugins = 'doNothing'; config.keystrokes = [[ 13 /*Enter*/, 'doNothing']]; (function() { var doNothingCmd = { exec : function( editor ) { alert('enter'); } }; var pluginName = 'doNothing'; CKEDITOR.plugins.add( pluginName, { init : function( editor ) { editor.addCommand( pluginName, doNothingCmd ); } }); })();