I've been banging my head off a brick wall with this one and another all nighter with no success. What I would like to do is have access to the values set in an array within a function but outside of that function. How could this be done? For example:
function profileloader()
{
profile = [];
profile[0] = "Joe";
profile[1] = "Bloggs";
profile[2] = "images/joeb/pic.jpg";
profile[3] = "Web Site Manager";
}
I would then further down the page within a paragraph tag have something like:
document.write("Firstname is: " + profile[0]);
Obviously that would be contained with in the script tag but all i'm getting is an error on the console stating: "profile[0] is not defined".
Anyone got any ideas where I'm going wrong? I just can't seem to figure it out and none of the other solutions I've seen when passing values from either function to function or outside of a function, have worked so far.
Thank you to anyone who can help me with this, its probably something simple I've missed!