Код: Выделить всё
$inputSpan.on('click', function() {
$inputSpan.attr('contenteditable', 'true').focus();
});
$inputSpan.on('blur', function() {
$inputSpan.removeAttr('contenteditable');
});
$inputSpan.on('keydown', function(event) {
if (event.key === 'Enter') {
if (event.shiftKey) {
// ... action for enter click
} else {
// ... end editing
$inputSpan.blur();
event.preventDefault();
add_block(); // this function append a new block to the page
}
}
});
Подробнее здесь: https://stackoverflow.com/questions/787 ... w-elements