Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Here is the situation:

I have one function which has local variable. I would like to assign that value to global variable and us it's value in another function.

Here is the code:

global_var = "abc";

function loadpages()
{
    local_var = "xyz";
    global_var= local_var;
}

function show_global_var_value()
{
    alert(global_var);
}

I'm calling show_global_var_value() function in the HTML page but it shows the value = "xyz" not "abc"

What am I doing wrong?

share|improve this question
2  
Your local_var is global. Declare variables with var keyword to make them local: var local_var = "xyz"; – el.pescado May 12 '10 at 13:59
1  
I don't understand where your problem is. It's doing exactly what you seem to want. BTW, local_var is not local. You need to declare it with var to make it local: val local_var = "xyz"; – RoToRa May 12 '10 at 14:02
Your question makes no sense. Describe your reasoning as to why you think the alert should show "abc". Specifically, what is it that you think the loadpages function is supposed to do if it's not to set global_var to "xyz"? – Pointy May 12 '10 at 14:04

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.