Hi,
I just wrote a JS class for AJAX today, but I ran in some trouble with the function receiving the server response...
I used "this.objAJAX" to refer to the HTTP Request object...
Within any functions, no problem, except for the one receiving the response...
If I call that function directly, fine, it "knows" what this.objAJAX is. But when it called to receive the HTTP response, it doesn't know what it is !
Is this normal ? Is there a way to solve this, or the only possibility is what I did, create an object OUTSIDE the class ?!