I am trying to get a simple concept of wysiwyg
editor. And I am stuck at this:
HTML
<iframe name="rte" id="rte" style="border:#000000 1px solid;"></iframe>
<button onclick="makeBold();"><span class="fa fa-bold"></span></button>
Javascript
var richTextField = document.getElementById("rte");
richTextField.document.designMode = "On";
function makeBold()
{
richTextField.document.execCommand('bold', false, null);
}
Problem: The iframe is not editable.