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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T19:19:49+00:00 2026-06-04T19:19:49+00:00

When I select a link (with no ids or classes) within a paragraph, I

  • 0

When I select a link (with no ids or classes) within a paragraph, I need to get the selected links href value. How do I do it in jQuery? I am using document.getSelection() method for that. But I don’t see any method in document.getSelection() which returns the href value.

When I select the link by dragging the mouse, I am able to get the href value like below.

currentLink = document.getSelection().anchorNode.parentElement.href;

But when I select the link by double clicking the text, the above command will not return the href value. Please help.

  • 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-04T19:19:51+00:00Added an answer on June 4, 2026 at 7:19 pm

    Here, I wrote you a little something to get you started. It’s more cross-browser than your original code:

    (function(AnchorSelector, $, undefined) {
    
        AnchorSelector.getAnchorHrefs = function(e) {
            var container = '';
            if (window.getSelection) {
                var sel = window.getSelection();
                if (sel.rangeCount) {
                    var div = $('<div>');
                    for (var i = 0, len = sel.rangeCount; i < len; ++i) {
                        div.append(sel.getRangeAt(i).cloneContents());
                    }
                    container = div;
                }
            } else if (document.selection) {
                container = $('<div>').append(document.selection.createRange().htmlText);
            }
            var arr = $.map(container.find('a'), function(n, i) {
                return ($(n).attr('href'));
            });
            if (arr.length) {
                alert(arr.join(','));
            }
            // Note: you can check e.type to see if it was a 'dblclick' or a 'mouseup' 
            // you may need to employ some type of debouncing to not get two alerts
            // when you double click the text
        }
    
        $(function() {
            $(document)
                .dblclick(AnchorSelector.getAnchorHrefs)
                .mouseup(AnchorSelector.getAnchorHrefs);
        });
    
    })(window.AnchorSelector = window.AnchorSelector || {}, jQuery);
    

    ​And here’s a jsFiddle demo.

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

Sidebar

Related Questions

how can i select the current link via jquery if I have a div
Using a GridView, I have it so that when the select link for the
Does anyone know how to select a value from a textbox/dropdown/checkbox within a form.
Is is possible to trigger a link to select a single line inside textarea.
If I have a link like this: <a data-btn=login></a> If I wished to select
How to vertically Align a text with a Select Option. Link: http://mink7.com/projects/test/dashboard.html
This is link to the root of my question: JQuery UI Multiselect how to
I am attempting to write some jQuery code that will expand a paragraph when
I'm using join to query data from two tables. For each a_id I need
I'm using selenium-client to test a site. I want to get all a tags

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.