Say I have this anonymous function:
(function(window){ var private = \'private msg\'; function sayit() { alert(private) // works } document.body.on
That's the whole point of having scope and private variables
Either
Set the private value to a global variable?
or
declare the variable outside