Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this code:

        var one;
        $("#ma1").click(function() {
            var one = 1;
        })
        $("body").click(function() {
            $('#status').html("This is 'one': "+one);
        })

and when I click the body, it says: This is 'one': undefined. How can I define a global variable to be used in another function?

share|improve this question

3 Answers

up vote 7 down vote accepted

Remove the var from inside the function.

    $("#ma1").click(function() {
        one = 1;
    })
share|improve this answer
2  
To expand upon why this works, when you used var inside the function, you created a new and separate local variable. By removing the var, you are essentially saying you want to look up the chain for a previously defined variable (in this case the global one). – Moses Apr 30 '12 at 20:18
@Moses: Thanks, that's exactly right. – Rocket Hazmat Apr 30 '12 at 20:19
Thanks for your help, Rocket. That saved me. – SnarkyDTheman Apr 30 '12 at 20:36
You're welcome :) – Rocket Hazmat Apr 30 '12 at 20:45

If you want to make a global variable bind it to window object

window.one = 1;
share|improve this answer
    var one;//define outside closure

    $("#ma1").click(function() {
        one = 1; //removed var 
    })
    $("body").click(function(e) {
        $('#status').html("This is 'one': "+one);
    })
share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.