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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T15:47:33+00:00 2026-06-03T15:47:33+00:00

I have a list of link , when I click on it , I

  • 0

I have a list of link , when I click on it , I want to count the elements that contain in my list. This is what I coded:

$('a#' + dataOption.ID).click(function () {
  $.getJSON("ProductListing/Index", data, function (product) {
     $.each(product.ja, function (index, value) {
        num_obj = product.ja.length;
     });
  });
});
alert(num_obj);

The alert is Undefined.

The JSON result is :

{"ja":
[
   {"Name":"ABC1","PictureName1":"my image name1","ID":1},   
   {"Name":"ABC2","PictureName2":"my image name2","ID":2}
]}

Could anyone tell me, how can I count that JSON in my click event. Thans so much.

  • 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-03T15:47:35+00:00Added an answer on June 3, 2026 at 3:47 pm

    The code you’ve posted creates a click handler and then immediately does an alert(num_obj) – given that num_obj isn’t declared anywhere and the click event itself hasn’t happened yet, num_obj is supposed to be undefined at that point.

    Try moving the alert into the callback of the $.getJSON() function, to just after the first point where num_obj actually has a value assigned:

    $('a#' + dataOption.ID).click(function () {
      $.getJSON("ProductListing/Index", data, function (product) {
         var num_obj = product.ja.length;
         alert(num_obj);
      });
    });
    

    Note that I’ve removed the $.each() since it doesn’t make sense to iterate over the product.ja array and test product.ja.length for each element (the fact that you didn’t use this or index or value inside the $.each() was also a clue that you didn’t need the each).

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

Sidebar

Related Questions

I have tried to do this refering to following link. http://skypher.com/index.php/2008/07/28/function-list-for-php/ But no success.
Ok, I have this list layout that I use, and I want the list
i have list of rows that user select and i want to delete them,
I have a page that I want to have a list of items (header
I have a list of links that users can click. When a click is
I have made myself a list adder. When you click the link, it adds
I have the list with like 100,000 site link strings Each link is unique,
Is there some way to replicate rails' link-to-unless-current? Ie. if i have a list
I have list of articles on the page in table and i want to
I have list of structure. I want to modify a particular data from 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.