I cannot get it to work with $.get() because it does not have a complete event.
I suggest using $.ajax() like this,
$.ajax({ url: 'http://www.example.org', data: {'a':1,'b':2,'c':3}, dataType: 'xml', complete : function(){ alert(this.url) }, success: function(xml){ } });
Reigel Sep 30 '10 at 6:10 2010-09-30 06:10
source share