If a page has code that wraps all variables in a scope, like this:
$(function() {
var attempts = 3;
});
Is it possible to edit the variables inside that scope from the browser console (eg Developer Tools for Chrome or Firebug for Firefox)?
If a page has code that wraps all variables in a scope, like this:
$(function() {
var attempts = 3;
});
Is it possible to edit the variables inside that scope from the browser console (eg Developer Tools for Chrome or Firebug for Firefox)?