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

  • Home
  • SEARCH
  • 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 6779291
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T16:22:05+00:00 2026-05-26T16:22:05+00:00

I am looping through some elements using jQuery’s .each() and I want to delete

  • 0

I am looping through some elements using jQuery’s .each() and I want to delete a node when it meets certain requirements. I’m unsure of the syntax for this, I’ve tried several things:

$(this).remove();
$xml.remove(this);
$xml.removeNode(this);

…etc. Having some trouble finding a working example, could somebody point me in the right direction? I’m assuming it’s simple, I just haven’t been able to find the correct syntax. Got a non-working fiddle below.

http://jsfiddle.net/SHNpn/

Thanks

  • 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-26T16:22:05+00:00Added an answer on May 26, 2026 at 4:22 pm

    That’s because the call to remove() only removes the element from the DOM. It does not remove it from your $siblings jQuery object.

    If you call find() again to rematch the siblings after removing the alex node, you will get the expected results:

    var $xml = $(xmlString);
    var $siblings = $xml.find("sibling");
    
    $siblings.each(function(){
        var name = $(this).attr("name");
        if (name == "alex")
            $(this).remove();
    });
    
    // Here, the "alex" element is not in the DOM, but still part of $siblings.
    
    $xml.find("sibling").each(function(){
        var name = $(this).attr("name");
        console.log(name);
    });
    
    // Since we're calling find() again, the code above will only print "bob".
    

    You will find an updated fiddle here.

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

Sidebar

Related Questions

I am looping through some elements and need to determine if an element has
I'm working on a site that involves looping through an array, using a jQuery
I am trying to loop through some elements in a form (radios, text boxes,
I am using the jquery validate plugin, in combination with some custom field types
Looking through some code I came across the following code trTuDocPackTypdBd.update(TrTuDocPackTypeDto.class.cast(packDto)); and I'd like
I was just looking through some information about Google's protocol buffers data interchange format.
I'm looking through some code for learning purposes. I'm working through this portion of
So I'm looking through some code, and I see this: class whatever { public:
I have been looking through some code on an open source project recently and
I've done some looking through the site and on the Internet trying to find

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.