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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T00:50:17+00:00 2026-05-25T00:50:17+00:00

Possible Duplicate: How might I extract the property values of a JavaScript object into

  • 0

Possible Duplicate:
How might I extract the property values of a JavaScript object into an array?

So i have a json array served from a very simple server as an array to my local server. I wish to parse the data into javascript for intended use in my web-app.

How would i convert a JSONP array to a javascript array? and lose the ‘names’ within JSON.

e.g.

myjsoncallback({"h1": "cmPanel", "h2" : "cmAuto", "h3": 0})

to become

(["cmPanel","cmAuto",0])

Thanks in advance stack, as always i am grateful for any help you can provide !

  • 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-25T00:50:18+00:00Added an answer on May 25, 2026 at 12:50 am

    Something like this?

    function myjsoncallback(obj) {
      var result = [];
    
      for (var key in obj) {
        result.push(obj[key]);
      }
    
      // result is now an array of the input object's values.
    }
    

    If you’re using jQuery 1.6+, jQuery’s $.map() function now works against objects and simplifies the syntax a bit more (though it’s doing the same thing under the hood):

    function myjsoncallback(obj) {
      var result = $.map(obj, function(value, key) {
        return value;
      });
    }
    

    To use this with a jQuery $.getJSON call to a service that properly supports JSONP, you can do something like this:

    $.getJSON('http://some.api.com/x/y/x?callback=?', function(response) {
      var values = $.map(response, function(value, key) {
        return value;
      });
    
      // Do something with "values" here.
    });
    

    When you specify callback=? instead of hard coding your own callback function name, jQuery will automatically substitute a uniquely named one for each request (that way you don’t have to worry about keeping straight which callback execution matches which request if you end up having more than one simultaneous request). Since it does that for you, you can just pass in an anonymous function for the callback parameter and not worry about setting up a standalone function at all.

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

Sidebar

Related Questions

Possible Duplicate: Can you do Desktop Development using JavaScript? I am very familiar with
Possible Duplicate: Parse NSURL query property I have a url like this: someapp://#access_token=1234%D&refresh_token=54%D%D321&instance_url=https%3A%2F%2Fsf.com I
Possible Duplicate: Combine multiple Collections into a single logical Collection? I have a lot
Possible Duplicate: How does the Google Did you mean? Algorithm work? Suppose you have
Possible Duplicate: How do you send email from a Java app using Gmail? How
Possible Duplicate: JavaScript: var functionName = function() {} vs function functionName() {} What's the
Possible Duplicate: Singleton: How should it be used Following on from Ewan Makepeace 's
Possible Duplicate: How can I get the name of function inside a JavaScript function?
Possible Duplicate: What is the difference between const and readonly? So from what I
Possible Duplicate: PHP function with unlimited number of parameters How to pass array as

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.