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();