[jQuery] accessing 'caller' object within post
hi all, i'm having troubles accessing the 'caller object of an ajax post for instance function A () { this.avar; } A.prototype.myFun = function() { this.avar; // no problem here $.post(url,data,callback) { this.avar; // here is the problem (a) } } a = new A; - (a) ca
[jQuery] accessing 'caller' object within post
hi all, i'm having troubles accessing the 'caller object of an ajax post for instance function A () { this.avar; } A.prototype.myFun = function() { this.avar; // no problem here } a = new A;