Hi I've tried a numerous amounts of "googled" snippets for disabling enter / return key but nothing is working. Any ideas on how to disable the enter / return key whilst in tinyMCE textarea?
A:
Hai Phil,
ed.onKeyPress.addToTop(function(ed, e) {
if ((e.charCode == 13 || e.keyCode == 13)) {
ed.setContent("");
return tinymce.dom.Event.cancel(e);
}});
Or refer this Disable enter key on tiny mce editor
Pandiya Chendur
2009-12-02 10:34:50
Do you know where abouts to put it as I cant seem to get it to work?
Phil Jackson
2009-12-02 14:40:08