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 5932735
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T14:52:32+00:00 2026-05-22T14:52:32+00:00

In Javascript, I’d like determine whether an element, say an A element, exists inside

  • 0

In Javascript, I’d like determine whether an element, say an A element, exists inside a given range/textRange. The aim is to determine if the user’s current selection contains a link. I am building a rich text editor control.

The range object has a commonAncestorContainer (W3C) or parentElement() (Microsoft) method which returns the closest common anscestor of all elements in the range. However, looking inside this element for A elements won’t work, since this common ancestor may also contain elements that aren’t in the range, since the range can start or end part way through a parent.

How would you achieve this?

  • 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-05-22T14:52:33+00:00Added an answer on May 22, 2026 at 2:52 pm

    I ended up going with a solution like this:

            var findinselection = function(tagname, container) {
                var
                    i, len, el,
                    rng = getrange(),
                    comprng,
                    selparent;
                if (rng) {
                    selparent = rng.commonAncestorContainer || rng.parentElement();
                    // Look for an element *around* the selected range
                    for (el = selparent; el !== container; el = el.parentNode) {
                        if (el.tagName && el.tagName.toLowerCase() === tagname) {
                            return el;
                        }
                    }
                    // Look for an element *within* the selected range
                    if (!rng.collapsed && (rng.text === undefined || rng.text) &&
                        selparent.getElementsByTagName) {
                        el = selparent.getElementsByTagName(tagname);
                        comprng = document.createRange ?
                            document.createRange() : document.body.createTextRange();
                        for (i = 0, len = el.length; i < len; i++) {
    
                            // determine if element el[i] is within the range
                            if (document.createRange) { // w3c
                                comprng.selectNodeContents(el[i]);
                                if (rng.compareBoundaryPoints(Range.END_TO_START, comprng) < 0 &&
                                    rng.compareBoundaryPoints(Range.START_TO_END, comprng) > 0) {
                                    return el[i];
                                }
                            }
                            else { // microsoft
                                comprng.moveToElementText(el[i]);
                                if (rng.compareEndPoints("StartToEnd", comprng) < 0 &&
                                    rng.compareEndPoints("EndToStart", comprng) > 0) {
                                    return el[i];
                                }
                            }
                        }
                    }
                }
            };
    

    Where getrange() is another function of mine to get the current selection as a range object.

    To use, call it like

    var link = findselection('a', editor);
    

    Where editor is the contenteditable element, or body in a designmode iframe.

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

Sidebar

Related Questions

Javascript lets you fire custom events when the user hovers over an element or
JavaScript post request like a form submit shows you how to submit a form
Javascript is an incredible language and libraries like jQuery make it almost too easy
Javascript: I have the DOM representation of a node (element or document) and I'm
Javascript client side application. Trying to eliminate memory leaks leads to ugly (to say
Javascript functions can be declared on a objects prototype like this: <object name>.prototype.<variable name>=function(){
JavaScript supports a goto like syntax for breaking out of nested loops. It's not
Javascript is executed by Java application. However, something like Jquery library is really too
Javascript provides us nice functions like toLocaleString , toLocaleTimeString etc. But I'm wondering -
Javascript how i can don't apply plugin to id if he not exists. $('#wyswig_comment').wyswig();

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.