I have used jHTMLArea to create rich text box and have been able to save and edit the same.But while showing the data in view mode.The inner html/data seems to be editable.How to set the jHtmlArea to readonly.
<textarea onblur="SaveInfo('Save')" class="txtContentDesc" id="ctl00_ContentPlaceHolder3_txtAreaS11" style="display: none;" readonly="true"></textarea>
The following code allows jHTMLArea textbox to be editable.
This post is old but here it is:
domElement.setAttribute('contenteditable', 'false')