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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T12:04:21+00:00 2026-05-25T12:04:21+00:00

In a xml document, I would like to retrieve with jQuery the distinct attributes

  • 0

In a xml document, I would like to retrieve with jQuery the distinct attributes values for “name” attribute of the elements “product”, deleting the duplicates.

However, I haven’t had any success with unique() function or creating an array, as suggested in this discussion here:
How to use jQuery to select XML nodes with unique text content?

Any help will be sincerly appreciated.
Thank you so much in advance.

My XML:

<products>
    <product name="first"></product>
    <product name="second"></product>
    <product name="first"></product>
    <product name="first"></product>
</products>

My not working code:

function getName() {

    $.ajax({
        type: "GET",
        url: xmlFile.xml,
        dataType: "xml",
        success: function(xml) {
            $(xml).find('product').each(function(){

                        var name = $(this).attr('name');
                        var productArray = new Array();
                        if( jQuery.inArray(name, productArray) == -1 ){
                            $('<p></p>').html(name).appendTo('body');
                            productArray.push(name);
                        }
            });
        }
    });
}
  • 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-25T12:04:22+00:00Added an answer on May 25, 2026 at 12:04 pm

    productArray is gettin defined for each iteration of the product element and hence the inArray is always returning -1.

    Move the definition of productArray outside the each loop i.e.:

    function getName() {
            $.ajax({
                type: "GET",
                url: xmlFile.xml,
                dataType: "xml",
                success: function(xml) {
                            var productArray = new Array();
                    $(xml).find('product').each(function(){
    
                                var name = $(this).attr('name');
                                if( jQuery.inArray(name, productArray) == -1 ){
                                    $('<p></p>').html(name).appendTo('body');
                                    productArray.push(name);
                                }
                    });
                }
            });
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm new to jQuery and would like to parse an XML document. I'm able
I would like to filter with high performance XML elements from an XML document.
I would like to iterate through an xml document to get its values. See
I have a complete XML document in a string and would like a Document
I would like to sign my XDocument XML document (to verify it later on).
I have an XML document that I would like to update after it already
I have the following XML document which I would like to parse into a
I have an XML document similar to: <tag> <content>adsfasdf<b>asdf</b></content> </tag> I would like for
I would like to iterate over an XML document that is essentially a list
I would like to transform an XML document using xslt with a set of

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.