I save the typed text in the editor in the database
For example, the user typed
Hi . are you well. I'm testing the editor
When I save this, it is stored like this
<div>
<p> </p><p>Hi . are you well. I'm testing the editor</p>
</div>
Now when I put it in the editor with the following code (jQuery)
var editor= document.getElementById('MyEditor').ej2_instances[0];
editor= .setHtml = "@ViewBag.editiLetter.Letter_text";
The tags also show that I do not want the tags to be displayed and the text must be displayed as text typed by the user