<div contentEditable="true" hidefocus="true" id="comment"></div>
$('#comment').keydown(function (e) {
if(e.ctrlKey && e.keyCode == 13){
$('#comment').append('<br>');
}
});