jQuery callbacks and JSONP
Hello,
I am trying to fully understand callback names. I see this code in the jQuery docs:
url: "http://query.yahooapis.com/v1/public/yql",
q: "select title,abstract,url from search.news where query=\"cat\"",
success: function( response ) {
So say I go to the YQL console at:
http://developer.yahoo.com/yql/console/
and I name the callback there jims . Is the whole thing with respect to jQuery AJAX is to now name the above piece of code from above:
Is this what the naming of callback functions is all about? Also can I just name the callback in YQL to whatever I want, like jims?
Thanks,
Jim