User Dan Eisenberg - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T01:48:05Z http://stackoverflow.com/feeds/user/101887 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/130186/ie-textrange-select-method-not-working-properly/827264#827264 3 Answer by Dan Eisenberg for IE TextRange select method not working properly Dan Eisenberg 2009-05-05T22:48:10Z 2009-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('&lt;span id="caret"&gt;&lt;/span&gt;') ... // 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>