Hi all
I've created a drag-drop style thing that drops HTML into CKEditor (appends it to the end). However, it I then copy and paste that HTML (see example below for specific code) it turns it into plain text. Is there a way to get it to put the HTML directly in?
Side note: it also does this with text that is in the textarea before it's CKEditor-ified. I'd like it to stop that too.
Before:
<p><span contenteditable="false" class="draggableEmailSpan" merge="Applicant_Address_Line_1" style="cursor: pointer;" draggabletarget="true">[Applicant Address Line 1]</span><br type="_moz"></p>
After:
<p>[Applicant Address Line 1]<br type="_moz"></p>