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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T03:57:24+00:00 2026-06-18T03:57:24+00:00

Possible Duplicate: jQuery: Return data after ajax call success first of all I’m not

  • 0

Possible Duplicate:
jQuery: Return data after ajax call success

first of all I’m not very experienced with JS or jQuery, but as far as my programming skills go I can’t seem to find anything that’s wrong with my approach.

var subtree;

$.post("addTreeServlet",
    {
        term:clickedNode,
        max:maxId,
        id:clickedId
    },
    function(jsonResponse){

        subtree = eval('(' + jsonResponse + ')');

    }
);

$jit.json.prune(subtree, level);
return {
     'id': nodeId,
     'children': subtree.children
};

I went through the code with the debugger, and here is what happens: The program comes back from the addTreeServlet and transmits a String representing JSON data. the eval() function takes this String and transforms it into an JSON Object (again, it looks perfectly fine in the debugger). But as soon as I leave the function(jsonResponse) the var subtree is shown as undefined, and I can’t figure out why.

Is that because of the jQuery method? I have no idea…

It is also the same behavior if I just put subtree = “whatever”. It becomes undefined as soon as I exit the function..

  • 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-18T03:57:25+00:00Added an answer on June 18, 2026 at 3:57 am

    It’s waiting for post response, but your fallowing script immediately parsed by browser. So you need to do what you want to do with ajax response after post response received.

    function(jsonResponse){
        var subtree = eval('(' + jsonResponse + ')');
        doSomthingWithResponse(subtree);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: jQuery: Return data after ajax call success I wrote a script which
Possible Duplicate: jQuery: Return data after ajax call success I have the following function
Possible Duplicate: jQuery: Return data after ajax call success jQuery AJAX: return value on
Possible Duplicate: Jquery: Return the value of a ajax call to caller function? In
Possible Duplicate: jQuery AJAX: return value on success Im having this weird reference issue
Possible Duplicate: return AJAX callback return I have made a JQuery code using AJAX,
Possible Duplicate: How to return the response from an AJAX call from a function?
Possible Duplicate: jquery ajax return: undefined I have written the following code to check
Possible Duplicate: How to return the response from an AJAX call from a function?
Possible Duplicate: Prevent caching of AJAX call I'm using jQuery to read a tiny

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.