Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
49
rated 0 times [  52] [ 3]  / answers: 1 / hits: 62701  / 13 Years ago, tue, march 29, 2011, 12:00:00

Is there a way that I can see the URL that was requested when I do an Ajax request with jQuery?



e.g.,



var some_data_object = { ...all sorts of junk... }
$.get('/someurl.php',some_data_object, function(data, textStatus, jqXHR) {
var real_url = ? # <-- How do I get this
})


How can I access the URL that jQuery actually used to make the request? Perhaps some method/property of jqHXR? I couldn't find it in the documentation.



Thanks.


More From » jquery

 Answers
205

Set a break point in success method, then watch



this.url


is the real url for the request.


[#93037] Saturday, March 26, 2011, 13 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
eliasf

Total Points: 703
Total Questions: 97
Total Answers: 129

Location: Chad
Member since Tue, Apr 27, 2021
3 Years ago
;