ajax / jsonp - what's the request string?
Hi all,
I'm performing an asynchronous HTTP request through jQuery.ajax().
dataType:
is "jsonp", and data: contains my request parameters.
The call is working as expected.
Is there any way to access the request string in use by .ajax(), e.g.
- http://example.com?a=1&b=2&c=3
From the forum I understand it would be possible to use xhr.url in the local beforeSend and global ajaxSend event - but these events don't seem to fire with jsonp.
So how could I read the actual request string in use for a jsonp call?
Thanks for any hints,
Arnold42
PS: Happy Easter.