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?
local_varis global. Declare variables withvarkeyword to make them local:var local_var = "xyz";– el.pescado May 12 '10 at 13:59local_varis not local. You need to declare it withvarto make it local:val local_var = "xyz";– RoToRa May 12 '10 at 14:02loadpagesfunction is supposed to do if it's not to setglobal_varto "xyz"? – Pointy May 12 '10 at 14:04