Yes, kinda. The `this` for $.ajax success is equal to the options of the ajax request. For example:
- $.ajax({
- url: "data.php",
- dataType: "json",
- success: function(json){
- alert( this.url );
- };
- });
Note: the success method that you used is depreciated. you can use it the way i did, however if you want to instead chain it, use .done() instead.
-- Kevin