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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T14:00:50+00:00 2026-06-02T14:00:50+00:00

I have a div. Inside that div I have multiple elements. Some elements have

  • 0

I have a div. Inside that div I have multiple elements. Some elements have the class ‘myClass’. I also have a button. When clicked, a foreach loop runs for each element that has the class myClass within the div. An ajaxCall is send for each element. The text color of those elements are black by default. In case of success of the ajax call. I would like to remove the class classBlackFont and add the one classGreenFont. I tried the following code which is unfortunately not switching the classes eventhough the ajax call succeeded.

$("#someDiv .myClass").each(function() {

    var ajaxData = "myAjaxData";
    $.ajax({
        type: "POST",
        url: "somefile.php",
        data: ajaxData,
        success: function(data) {

            $(this).removeClass('classBlackFont').addClass('classGreenFont');
        }
    });

});​
  • 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-02T14:00:51+00:00Added an answer on June 2, 2026 at 2:00 pm

    this is not automatically a reference to the right object in the ajax callback. You can change that by closing over a variable that does have the right value:

    $("#someDiv .myClass").each(function() {
        var $this = $(this);
        var ajaxData = "myAjaxData";
        $.ajax({
            type: "POST",
            url: "somefile.php",
            data: ajaxData,
            success: function(data) {
                $this.removeClass('classBlackFont').addClass('classGreenFont');
            }
        });
    
    });​
    

    or by using the context option of $.ajax():

    $("#someDiv .myClass").each(function() {
        var ajaxData = "myAjaxData";
        $.ajax({
            type: "POST",
            url: "somefile.php",
            data: ajaxData,
            context: this,
            success: function(data) {
                $(this).removeClass('classBlackFont').addClass('classGreenFont');
            }
        });
    
    });​
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have div having class name .modalPopup inside the div I have multiple table
I have a div that has multiple children divs. inside of the children divs
I have some elements that need to have the text inside editable, for this
I have a div that has a span inside that will display a message
I have a div with a width of 200px. There is text inside that
I have a main wrapper div that is set 100% width. Inside that i
I have an outer div, and inside of that, I have an inner div
I have an 3 images inside a div and that div is inside another
So I have a div in my body that's a percentage width, and inside
Inside a div, there is a picture that should have 10px margin in all

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.