Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8103165
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T23:27:33+00:00 2026-06-05T23:27:33+00:00

I have a function that return an array (won’t work in IE) with two

  • 0

I have a function that return an array (won’t work in IE) with two elements

  • the html code of what the user select inside a div (id=text)
  • the range of the selection

In case the user select a simple string inside the text div the range return the correct values but when the user select a string inside an element child of div (div#text->p for example) range’s values are related to the child element but i want them to be related to the parent (div#text)

Here there’s a JsFiddle http://jsfiddle.net/paglia_s/XKjr5/: if you select a string of normal text or normal text + bolded text in the teatarea you’ll get the right selection while if you select the bolded word (“am”) you’ll get the wrong one because the range is related to the child element.

There’s a way to do so that the range is always related to div#text?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T23:27:36+00:00Added an answer on June 5, 2026 at 11:27 pm

    You could use my Rangy library and its new TextRange module, which provides methods of Range and selection to convert to and from character offsets within the visible text of a container element. For example:

    var container = document.getElementById("text");
    var sel = rangy.getSelection();
    if (sel.rangeCount > 0) {
        var range = sel.getRangeAt(0);
        var rangeOffsets = range.toCharacterRange(container);
    }
    

    rangeOffsets has properties start and end relative to the visible text inside container. The visible text isn’t necessarily the same as what jQuery’s text() method returns, so you’ll need to use Rangy’s innerText() implementation. Example:

    http://jsfiddle.net/timdown/KGMnq/5/

    Alternatively, if you don’t want to use Rangy, you could adapt functions I’ve posted on Stack Overflow before. However, these rely on DOM Range and Selection APIs so won’t work on IE < 9.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

PHP: I have made up a function that returns an array. I would like
I have a function that return [[]] , and I want to test the
I have created a function that will return the string path from my DB.
Now I have a function that has to return a string. I saw a
I have a function that uses out parameters to return multiple values to the
I have 1 function that I want to return the address of an assigned
I have a function that I would like to return 0 if a certain
Lets say I have a recursive function that creates lists within lists. It return
I have an array of site options. Then I've a function that validates all
Possible Duplicate: Declaring a function that return a 2D array in a header file?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.