User Dan Eisenberg - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T01:48:05Zhttp://stackoverflow.com/feeds/user/101887http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/130186/ie-textrange-select-method-not-working-properly/827264#8272643Answer by Dan Eisenberg for IE TextRange select method not working properlyDan Eisenberg2009-05-05T22:48:10Z2009-05-05T22:48:10Z<p>I've figured out a few methods for dealing with IE ranges like this.</p>
<p>If all you want to do is save where the cursor is, and then restore it, you can use the pasteHTML method to insert an empty span at the current position of the cursor, and then use the moveToElementText method to put it back at that position again:</p>
<pre><code>// Save position of cursor
range.pasteHTML('<span id="caret"></span>')
...
// Create new cursor and put it in the old position
var caretSpan = iframe.contentWindow.document.getElementById("caret");
var selection = iframe.contentWindow.document.selection;
newRange = selection.createRange();
newRange.moveToElementText(caretSpan);
</code></pre>
<p>Alternatively, you can count how many characters precede the current cursor position and save that number:</p>
<pre><code>var selection = iframe.contentWindow.document.selection;
var range = selection.createRange().duplicate();
range.moveStart('sentence', -1000000);
var cursorPosition = range.text.length;
</code></pre>
<p>To restore the cursor, you set it to the beginning and then move it that number of characters:</p>
<pre><code>var newRange = selection.createRange();
newRange.move('sentence', -1000000);
newRange.move('character', cursorPosition);
</code></pre>
<p>Hope this helps.</p>