How can I get the co-ordinates of selected text in Javascript ?
feedback
|
|
I don't have knowledge on jQuery. So I support only Infant Programmer's suggestion.
I tried even OnSelect() event .. that seems not work. | |||
|
feedback
|
|
Please see these links: http://stackoverflow.com/questions/29709/how-do-i-get-the-coordinates-of-the-caret-in-text-boxes | |||
|
feedback
|
|
As Sarfraz's links refer mainly to textboxes and I assume you want to get the position of any selection, here's the steps needed to get it:
That's it in a nutshell, I won't start implementing the code for that because it's tricky with IE having one kind of code and other browsers other kind. Note that this method works reliably only on text selections, if you have a selection starting with an image for example, things might get difficult. | |||
|
feedback
|
|
Isn't OnMouseDown() and OnMouseUp() events are helpful?? To select the text you need to click mouse button down .. and to complete the selection you do mouseUp .. with OnMouseDown event you can get the Co-ordinates of Initial letter and with OnMouseUp the last letter .. Check this code out .. : ..
Outputs something like this::
There is no problem with mouseDown .. but On mouseUp both the co-ordinates depend on the exact position of the cursor where you trigger the event .. that is why you can see minor change in co-ord Y in above example .. Please give a feedback writing as comments .. Hope it helps :-) | ||||
|
feedback
|
|
Check this link : http://javascript.internet.com/page-details/highlighted-text.html | |||
|
feedback
|