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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T15:18:14+00:00 2026-06-06T15:18:14+00:00

How do I iterate through this json message’s nested array(i.e. orders) with jquery? [{Type:X,Symbol:AAP,BidPrice:17.0,

  • 0

How do I iterate through this json message’s nested array(i.e. “orders”) with jquery?

[{"Type":"X","Symbol":"AAP","BidPrice":17.0,
"OfferPrice":0.0,"BidQty":9,"OfferQty":0,"LastTradePrice":17.0,
"orders":[{"BidQuantity":"12","BidPrice":"17.0","OfferQuantity":"","OfferPrice":""},
"BidQuantity":"5","BidPrice":"17.0","OfferQuantity":"","OfferPrice":""},
"BidQuantity":"5","BidPrice":"17.0","OfferQuantity":"","OfferPrice":""},
"BidQuantity":"2","BidPrice":"16.0","OfferQuantity":"","OfferPrice":""}]}

I have tried the following way but it does not work

$.each(data, function(i, item) {
   $('#last').text(data[i].LastTradePrice);

   var ords = item.orders;  
   $.each(ords, function(x,ork) {
    alert(ork[x].BidPrice);
   });                                      
});

I get the following error in firefox console

ork[x] is undefined

  • 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-06T15:18:16+00:00Added an answer on June 6, 2026 at 3:18 pm

    Changing my code to following way it worked for me perfectly well.

    $.each(data, function(i, item) {
      alert(data[i].Symbol); /* retrieve values from first json array */
      if(data[i].orders != null){   
         for(var j=0; j<data[i].orders.length; j++){
            alert(item.orders[j].BidPrice);/* retrieve json values from nested array */
         }
      }
    }
    

    Sorry for the delayed response with the answer, I was seriously busy with work for a while……
    Thanks all who tried to help.

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

Sidebar

Related Questions

I'm using this JavaScript to iterate through an array and find a matching array
I'm trying to iterate through a complex type binding in jQuery to submit the
My question: How can I break up and iterate through the JSON array pictured
How to iterate through table if it has this structure: <table> <tr> <td><input class
Is it slower to iterate through a list in Java like this: for (int
At the moment my solution is to iterate through the map to solve this.
This is probably an easy question, but I'd like to iterate through the tags
I am trying to iterate through a JSON object to import data, i.e. title
I'm trying to iterate through a bunch of variables in a javascript (using jQuery)
I'm trying to iterate through a JSON response that's generated from my code-behind. The

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.