jQuery documentation indicates the following is returned:
success(data, textStatus, XMLHttpRequest)Function
A function to be called if the request succeeds. The function gets passed three arguments: The data returned from the server, formatted according to the 'dataType' parameter; a string describing the status; and the XMLHttpRequest object. This is an Ajax Event.
I have only been using the "data" parameter. What is the purpose of the "textStatus"?...I get "undefined" when I put this var in an alert (within the success function) What can I get from the XMLHttpRequest? and how do I access it?
Thanks