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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T07:54:11+00:00 2026-05-29T07:54:11+00:00

I want to run an ajax request within a function. Basically… function doIt(id) {

  • 0

I want to run an ajax request within a function. Basically…

function doIt(id) {
    var myVar;
    $.ajax({
        ... url etc...
        success: function(result) {
            myVar = "Some stuff" + result;
            console.log(myVar);
        }
    })
    return myVar;
}

but myvar isn’t set to what it is when I log it after on success. How can I get that variable retuned by 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-05-29T07:54:11+00:00Added an answer on May 29, 2026 at 7:54 am

    $.ajax is asynchronous, meaning it doesn’t finish before the next line is executed. What is happening is that return myVar; is being executed before the success event triggers.

    Turn the async property off and that will superficially fix your problem:

    function doIt(id) {
        var myVar;
        $.ajax({
            ... url etc...,
            async: false,
            success: function(result) {
                myVar = "Some stuff" + result;
                console.log(myVar);
            }
        })
        return myVar;
    }
    

    However, that will make your browser hang, so the best way to approach this is to put all processing inside of the success event.

    function doIt(id) {
        var myVar;
        $.ajax({
            ... url etc...,
            async: false,
            success: function(result) {
                myVar = "Some stuff" + result;
                console.log(myVar);
                // TODO: Everything related to `myVar` here.
            }
        })
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to run function inside web service (.asmx file) $.ajax({ type: POST, contentType:
I've got a particular function I want to run once, and only after the
I have a code similar to this: $.ajax({ success: function(data) { text = '';
I run into this problem constantly while developing AJAX applications. Let's say I want
In Google Chrome, AJAX called within $(function(){....}); seems to keep the page loading. I
I have an AJAX call that I want to run against a WCF GET
I'm using the following ajax function: function callAjax(request,callback) { if (window.XMLHttpRequest) {// code for
I want to trigger an ajax request when the user has finished typing in
Hi guys i want to use an load image during the .ajax request with
I want to attach a submit() handler to a form to run an ajax

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.