Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
var game = (function() {

    function start() {
        //somefunction
    }

    function save_count(someparamt) {
        //somefunction
    }

})();

How could I trigger savecount() from the browser url? javascript:savecount(); won't work and neither game.savecount() and neither window.game.savecount();

share|improve this question
1  
In your current example game is undefined. That is probably not what you intended. – sth Oct 11 '10 at 0:04
The module pattern might help. – sje397 Oct 11 '10 at 0:04
Can you accept an answer by clicking in the hollow checkmark? – Jacob Relkin Oct 11 '10 at 4:17

1 Answer

You probably meant to do this:

var game = {

    start:function() {
        //somefunction
    },
    save_count:function(someparamt) {
        //somefunction
    }

};

Yes, this will push the game object into global scope.

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.