I figured out how to accomplish inserting data into a post message regardless of editor mode (that works with Firefox 29 and Chrome 35), and thought it would be good etiquette to share my findings here.
I have a textarea element with id="MathInput" whose contents I wish to insert into the post message at the current cursor location within the post message when a "Copy to Post" button is clicked. I want the cursor to be located at the end of the inserted data after the operation. This is the function that does this:
Code:
function copyMathToPost()
{
var content = document.getElementById('MathInput').value, el = document.getElementsByClassName('cke_source')[0];
if (el)
{
var pos = getCaretPosition(el);
el.value = el.value.substr(0, pos) + content + el.value.substr(pos);
setCaretPosition(el,pos + content.length);
el.focus();
}
else
{
var iFrame = document.getElementsByTagName('iframe')[0];
insertHtmlAtCursor(iFrame,content);
moveCaret(iFrame, -1);
moveCaret(iFrame, 1);
}
}
Here are the supporting functions:
Code:
function getCaretPosition(el)
{
if (el.selectionStart)
{
return el.selectionStart;
}
else if (document.selection)
{
el.focus();
var r = document.selection.createRange();
if (r == null)
{
return 0;
}
var re = el.createTextRange(), rc = re.duplicate();
re.moveToBookmark(r.getBookmark());
rc.setEndPoint('EndToStart', re);
return rc.text.length;
}
return 0;
}
function setCaretPosition(ctrl,pos)
{
if(ctrl.setSelectionRange)
{
ctrl.focus();
ctrl.setSelectionRange(pos,pos);
}
else if(ctrl.createTextRange)
{
var range = ctrl.createTextRange();
range.collapse(true);
range.moveEnd('character',pos);
range.moveStart('character', pos);
range.select();
}
}
function insertHtmlAtCursor(iFrame,html)
{
var sel, range, node;
html = html.replace(/\r\n?|\n/g, '<br>');
if (iFrame.contentWindow.getSelection && iFrame.contentWindow.getSelection().getRangeAt)
{
sel = iFrame.contentWindow.getSelection();
try{range = sel.getRangeAt(0);}
catch (e){alert("This function is not supported by your browser. Please switch editor to Source Mode.");}
node = range.createContextualFragment(html);
range.insertNode(node);
range = range.cloneRange();
range.collapse();
sel.removeAllRanges();
sel.addRange(range);
}
else if (iFrame.contentWindow.selection && iFrame.contentWindow.selection.createRange)
{
iFrame.contentWindow.selection.createRange().pasteHTML(html);
}
else
{
alert("This function is not supported by your browser. Please switch editor to Source Mode.");
}
iFrame.focus();
}
function moveCaret(win, charCount)
{
var sel, range;
if (win.contentWindow.getSelection)
{
sel = win.contentWindow.getSelection();
if (sel.rangeCount > 0)
{
var textNode = sel.focusNode;
var newOffset = sel.focusOffset + charCount;
sel.collapse(textNode, newOffset);
}
}
else if (sel = win.contentDocument.selection)
{
if (sel.type != "Control")
{
range = sel.createRange();
range.move("character", charCount);
range.select();
}
}
}