Is it possible to move the caret to the very beginning (right before first element) of a designmode IFRAME?

link|improve this question

What editor is this? – CommunistPancake Sep 23 '11 at 0:54
feedback

1 Answer

up vote 2 down vote accepted

Here's a function to do that. Pass in a reference to the <iframe> element.

Live demo: http://jsfiddle.net/aLP26/

Code:

function moveCursorToStart(iframeEl) {
    var win = iframeEl.contentWindow || iframeEl.contentDocument.defaultView;
    var doc = win.document;
    if (win.getSelection && doc.createRange) {
        var sel = win.getSelection();
        var range = doc.createRange();
        range.selectNodeContents(doc.body);
        range.collapse(true);
        sel.removeAllRanges();
        sel.addRange(range);
    } else if (doc.selection && doc.body.createTextRange) {
        var textRange = doc.body.createTextRange();
        textRange.collapse(true);
        textRange.select();
    }
}
link|improve this answer
Thanks, neat! Do you have any thorough guide on these ranges? – Jauzsika Sep 23 '11 at 9:07
1  
@Jauzsika: Not really. I've written a lot of answers on this kind of thing on SO and I've documented Range and Selection methods for my Rangy library (code.google.com/p/rangy). I hope to write a longer guide some time. MDN is not bad: developer.mozilla.org/En/DOM:range and developer.mozilla.org/En/DOM:Selection. TextRange docs on MSDN: msdn.microsoft.com/en-us/library/ms533042%28v=vs.85%29.aspx and msdn.microsoft.com/en-us/library/ms535872%28v=vs.85%29.aspx – Tim Down Sep 23 '11 at 10:50
Thanks, checking Rangy! – Jauzsika Sep 23 '11 at 11:34
I have struggle for half of a day against the issue how to move cursor to the end of iframe when it get focus() event. I just modified your code collapse(ture) to collapse(false), everything run as my except. I have also looked your rangy liberary, I think it's a bit heavy(if <10k could be great), and you can provide a few of demos, something like quick start. – Domi.Zhang May 8 at 9:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.