[javascript] How to get request url in a jQuery $.get/ajax request

I have the following code:

$.get('http://www.example.org', {a:1,b:2,c:3}, function(xml) {}, 'xml');

Is there a way to fetch the url used to make the request after the request has been made (in the callback or otherwise)?

I want the output:

http://www.example.org?a=1&b=2&c=3

This question is related to javascript jquery

The answer is


Since jQuery.get is just a shorthand for jQuery.ajax, another way would be to use the latter one's context option, as stated in the documentation:

The this reference within all callbacks is the object in the context option passed to $.ajax in the settings; if context is not specified, this is a reference to the Ajax settings themselves.

So you would use

$.ajax('http://www.example.org', {
  dataType: 'xml',
  data: {'a':1,'b':2,'c':3},
  context: {
    url: 'http://www.example.org'
  }
}).done(function(xml) {alert(this.url});