Contenteditable div with bold option
问题 I want to make contenteditable div with bold and italic options to display content in another div on keyup with the same options. I managed to display text, but not options. Please help html: <button onclick="document.execCommand('bold');">B</button> <button onclick="document.execCommand('italic');">I</button> <div id="textarea" contenteditable></div> <div id="textarea-show"></div> jquery: $('#textarea').keyup(function() { $('#textarea-show').html($(this).text()); }); css: #textarea {