in $.ajax() how to read this.id var PageLoader = my.Class({ index:0, count:0, id:$.uuid(), constructor: function(url) { this.url = url; var _self = this; ``` $.ajax({ url: this.url, success: function(msg){ alert(this.id) // this is error } }); } ``` });