It's not a mistake. CLEditor uses a standard api browser that can produce different results in different browsers, and you cannot change IE behavior, but you can disable the "br" generation in Mozilla using execCommand
$("#input").cleditor()[0].doc.execCommand("insertBrOnReturn", false, false);
But content must have at least one paragraph. Only in this case firefox will generate a "p".
source
share