tags:

views:

43

answers:

1

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
Do you know where abouts to put it as I cant seem to get it to work?
Phil Jackson