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

  • Home
  • SEARCH
  • 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 3452918
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T09:18:51+00:00 2026-05-18T09:18:51+00:00

What is the best to use global variables outside of a callback function? var

  • 0

What is the best to use global variables outside of a callback function?

    var icon; 
    $(function(){

      $.get('data.xml', function(xml){

           icon = xml.documentElement.getElementsByTagName("icon");
           //this outputs a value
           console.log(icon);
       });
       //this is null
       //How can this maintain the value set above?
       console.log(icon);
    });
  • 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-18T09:18:52+00:00Added an answer on May 18, 2026 at 9:18 am

    The code you have provided is perfectly valid — and, in fact, icon does “maintain” it’s value. The problem, likely, is that get() runs asynchronously — only calling the anonymous function after 'data.xml' has been fully loaded from the server. So the real-world sequence of execution looks something like this:

    1. call get('data.xml', function(xml){...}) (starts loading data.xml)
    2. call console.log(icon) (icon is still null at this point)
    3. (data.xml finished loading) now the anonymous function is called, which assigns the value to icon: icon = xml.documentElement.getElementsByTagName("icon").

    If you want to do something with the value of icon, after the ‘data.xml’ has been fetched, then you’ll need to do it inside the anonymous callback function. Like this:

    var icon; 
    $(function(){
    
      $.get('data.xml', function(xml){
           icon = xml.documentElement.getElementsByTagName("icon");
           console.log(icon);
       });
    });
    

    good luck!


    Note: you can still use icon from code that is outside the anonymous function, but you’ll need to wait to access it, until after the anonymous function has been run. The best way to do this is to put the dependent code into its own function, and then call that function from within the callback function:

    var icon; 
    $(function(){
    
      $.get('data.xml', function(xml){
           icon = xml.documentElement.getElementsByTagName("icon");
           loadIcon();
       });
    
       function loadIcon() {
           console.log(icon);
           // ... do whatever you need to do with icon here
       }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

What is the best way to use global variables in Javascript? Should I do
This question is about best use scenarios in projects with ORMs like NHibernate, Subsonic,
When saving data in different sql tables, is it best to use the GUID
What is the best way to use ResolveUrl() in a Shared/static function in Asp.Net?
Somebody said that when your PHP code and application use global variables then it
We all know that global variables are anything but best practice. But there are
What is the best way to get a global variable inside a class? I
Which component is best to use for receiving HTTP requests in Delphi application?
When using divs when is it best to use a class vs id ?
In C++, when is it best to use the stack? When is it best

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.