I am currently working on a project that at one point allows you to type Javascript into a textarea and it will be run. There is a lot of background code monitoring the page and sending to the server data. All of this is in a private function so that one can't break in simply using the console. Then only problem is that the code typed in at the textarea is evaluated inside of the private function containing the server functions, thus giving it access to the site's internals. How can i isolate it and make it so it's scope is outside of the private function? An example is below:
<script>
var x = 2;
(function(){
var x = 10;
var elem = document.createElement('button');
elem.addEventListener('click',function(){
alert(x);
});
document.body.appendChild(elem);
})();
</script>
In this example i want x to return 2 not 10 when the button is pressed. Thus forcing it to run as if it was in the global scope.
Edit
I have tried binding the function to the window which seemed be going down the right path, but didn't have the effect i was looking for.
<script>
var x = 2;
(function(){
var x = 10;
var elem = document.createElement('button');
elem.addEventListener('click',(function(){
alert(x);
}).bind(window));
document.body.appendChild(elem);
})();
</script>
I also tried applying the window to the function, but alas that didn't work either.
xdeclared outside the closure, because it is being shadowed by thexdeclared inside the closure. If you remove the keywordvarfrom the third line, you will have access to that outside variable, but then you will be overwriting its value on that same line (which is now justx = 10), which isn't what you want either. This is one of the many problems generally associated with use of global variables. – leftclickben Feb 3 at 15:15window.xif it is in the global scope. No idea whether comet affects that. – Fabrício Matté Feb 3 at 15:45