JavaScript JSON
var j = { v: 0 ,c: function() { g = this; this.v = 0; this.f = function() { window.alert(g.v); }; this.e = function() { attach(window,'load',this.f); }; } } o = new j.c(); o.v = 1; o.e(); //1 ...
http://qindex.info/i.php?x=2441

-