onLoad:function (data) { if (data != "") { $(data).appendTo(this.element) } }
$.ajax({ success: this.onLoad(data) })
$.ajax({ success: jQuery.proxy(this.onLoad, this) })