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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T14:57:41+00:00 2026-05-20T14:57:41+00:00

My question is about this (selector context) within the jQuery $().find function. My code

  • 0

My question is about “this” (selector context) within the jQuery $().find function.

My code below grabs a collection of li.
Then uses that collection to “find” an h3.
Then adds a div element after the h3 and attempts to use the $().data function to associate the new div element onto the h3 for later use.

Does anyone know why when I run this code the $(this) inside of the data function returns the DOCUMENT and not an li from the $posts collection?

var $posts = $('#blog ul').children();
$posts.find("h3").after("<div></div>").data("div", $(this).parent().find('div'))
  • 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-20T14:57:42+00:00Added an answer on May 20, 2026 at 2:57 pm

    yes, you are implying that calling the function find() somehow creates a scope. The this context can only be created within a function:

    function(){
      this // now means the context of this function which might be window
    }
    

    if it is the case that there will only be 1 h3 in the posts collection you could cache it.
    Otherwise you are looking for the each method;

    var $posts = $('#blog ul').children();
    $posts.find('h3').each(function(){
      var $this = $(this);
      $this.after('<div/>').data('div', $this.parent().find('div'));
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So I just have posted a question about this code (which was answered): $(document).ready(Main);
I have a question about the dialog() function of Jquery. I wonder if instead
This question is about organizing the actual CSS directives themselves within a .css file.
I have a question about this formula from a book: EFW (cm,kg)= 10^(-1,7492+(0,166*BPD)+(0,046*AC)-(2,646*AC*BPD/1000)) The
I see a question about this here . However, in my case, It is
nobody loved my first question about this: Creating Entity Framework objects with Unity for
Hi I have a question about this pointer, when an object is constructed, when
I got a few question about this IDE. First, when boot up vs2010, it
I have already posted a question about this, but the situation has changed sufficiently
I have a question about my C++ homework. I am just confused about *this.

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.