Disable new blockquote if Enter keypress on COntentent editable javascript or jQuery
HTML
<div id="demo" contenteditable="true">
<p>This is a paragraph. Lorem Ipsum...</p>
<blockquote>This is a blockquote. Enter here</blockquote>
</div>
CSS
blockquote {
background: beige;
padding: 10px;
border: 2px dashed #dadada;
}
Snippet
blockquote {
background: beige;
padding: 10px;
border: 2px dashed #dadada;
}
<div id="demo" contenteditable="true">
<p>This is a paragraph. Lorem Ipsum...</p>
<blockquote>This is a blockquote. Enter here</blockquote>
</div>