responseText from $.get in jquery -


i have code:

var response = $.get(url);

and want responsetext returned response object. , there. solutions i've looked on stackoverflow change ajax request, data there in object. how can responsetext out of object? dont want change above code.

jquery.get returns jqxhr object

var response = $.get(url);  response.done(function(data) {     alert(data); }); 

Comments

Popular posts from this blog

c# - ItextSharp font color issue in ver 5.5.4+ -

jquery - Multiple issues with pushstate: history, loading, calling functions -

ios - retrievePeripherals deprecated in IOS7 how to substitude it with retrievePeripheralsWithIdentifiers -