This is simple richtexteditor we are know. textarea is not included iframe. but i need to get content of iframe.
var textfield = $("#richTextField").html();
var textfield = $("#myTextArea").html();
<textarea style="display: none" class="myTextArea" name="myTextArea" id="myTextArea" cols="100" rows="14"></textarea>
<iframe name="richTextField" class="richTextField" id="richTextField" onload="window.frames['richTextField'].document.designMode='on';" ></iframe>
but both, textarea and iframe value is empty. how can i get content from textarea or iframe. thanks for reading.