I've done a simple script in jsFiddle.net that shows my problem.
I try to overwrite the line breaks in a contenteditable=true element from the default <div> to a <br /> with the following script:
$(".editContents").on("keydown","[contenteditable=true]",function(e) {
if(e.which===13) {
lineBreak = "<br />";
document.execCommand("insertHTML",false,lineBreak);
return false;
}
});
It works like it should if you press enter inside the text - but as soon as you try to make a line break at the end of the paragraph nothing happens.
Unfortunately I have no clue whats wrong with it. Any help is warmly welcome :-)