3
votes
Character offset in an Internet Explorer TextRange
I use a method based on this caret position trick:
// Assume r is a range:
var offsetFromBody = Math.abs( r.moveEnd('character', -1000000) );
Since moveEnd returns …
3
votes
Get selected text and selected nodes on a page?
You are in for a bumpy ride, but this is quite possible. The main problem is that IE and W3C expose completely different interfaces to selections so if you want cross browser functionality then you …
3
votes
Javascript - Textarea Selection
Start with PPK's introduction to ranges. Mozilla developer connection has info on …
