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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T18:32:01+00:00 2026-05-26T18:32:01+00:00

I am trying to access variable ‘dimensions’ in my ajax response but not able

  • 0

I am trying to access variable ‘dimensions’ in my ajax response but not able to get it. I dont want to make this variable global. Following is my code

  $(document).ready(function(){
  $('#submittext').click(function(){
   var dimensions;
   $.ajax({
     type: "GET",
     url: "bin/getcontentsize.php",
     data: findContentsize,
     success: function(response){
       //want to access dimensions here to assign response and some calculation(but not able to access it)
     }
     });
   //so i can use here
  });
  });
  • 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-26T18:32:01+00:00Added an answer on May 26, 2026 at 6:32 pm

    In this case you can access the dimensions variable from both the ajax call back and the code immediately after starting the ajax request. The variable is accessible in both of these contexts.

    What is most likely causing the problem though is the timing. The success method will run asynchronously after the ajax request is completed. It’s best to view this as executing later. However the code immediately after the $.ajax call will execute immediately. Hence you won’t see any effects from the success handler on the dimensions variable when it runs.

    If there is code you want to run with the value of dimensions as calculated by the success method you need to call that code from the success callback. For example

    $('#submittext').click(function(){
    
       var handleNewDimensions = function (dimensions) {
         // Code that used to be after the $.ajax line
       }
    
       $.ajax({
         type: "GET",
         url: "bin/getcontentsize.php",
         data: findContentsize,
         success: function(response){
           var dimensions = doTheCalculation(...);
    
           // Call the code which needs to deal with the new dimensions
           handleNewDimensions(dimensions);
         }
       });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to access a member structs variables, but I can't seem to get
I get an ' EXC_BAD_ACCESS ' error when trying to access variable in a
Hai am trying to access the aspx variable.But i can't to do this.I dunno
I am trying to access a static method, but using a variable as the
I am trying to document the private variable in phpdoc but its not documenting.
I am trying to access an instance variable which is set in the controller
I'm trying to access a variable in a smarty array. The array is called
I am trying to access the outer class variable cell[i][j] from the inner class
So I am trying to access a jquery soundmanager variable from one script (wpaudio.js
I'm trying to access a date variable from a form individually to the other

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.