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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T07:11:13+00:00 2026-06-09T07:11:13+00:00

I have a function (still in development) that needs to capture user selected text

  • 0

I have a function (still in development) that needs to capture user selected text in a div (not text areas and input boxes so .select won’t work.). Using .click and selection and range objects works great when the selection is contained within a single element in that div but fails to trigger if the user selection spans multiple elements within the div (like multiple p’s).

    $('.relevantDivClass').click(function(){
        console.log('Got here');
        SelObj = window.getSelection();
        Range = SelObj.getRangeAt(0);
        if (SelObj.anchorNode == SelObj.focusNode){
            console.log('executing same node branch');
            string = SelObj.toString();
            console.log(string)
        }
        else{
            console.log('executing multiple node branch');
            //code...
        }
    });

Any ideas on how to get that event to trigger in that situation? It’s still within the relevantDivClass so I’m confused as to why the .click won’t trigger.

  • 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-09T07:11:14+00:00Added an answer on June 9, 2026 at 7:11 am

    Use .mouseup() instead of .click(). When highlighting text across multiple paragraphs, the ‘mouseup’ event is not triggered on the same element that ‘mousedown’ was triggered on — which is the definition of the ‘click’ event. .click() works for single paragraphs because you trigger both ‘mousedown’ and ‘mouseup’ on the <p> element, and it bubbles up to its parent, the <div>.

    Working Demo

    $(function() {
        $('.relevantDivClass').mouseup( function() {
            alert('Got here');
            SelObj = window.getSelection();
            Range = SelObj.getRangeAt(0);
            if (SelObj.anchorNode == SelObj.focusNode){
                alert('executing same node branch');
                string = SelObj.toString();
                alert(string)
            }
            else{
                alert('executing multiple node branch');
                //code...
            }
        });
    });
    ​
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Inside my Controller i have function that runs after user clicks on item, which
I have function getCartItems in cart.js and I want to call that function in
I have function Start() that is fired on ready. When I click on .ExampleClick
I have been reading a lot about test-driven development and decided that I want
I'm working on a jQuery lightbox type plugin that needs to function for mobile
I am really new to Xcode and iPhone development. I have written a function
I have a recursive function (in C#) that I need to call about 800
I'm new to the Entity Framework. I have a SQL Function that returns the
I have my own RTSP Source Filter solution which is still under development but
We have some JavaScript code that resizes <div/> elements (adjusts height/width/padding/margin etc.) based on

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.