jQuery callbacks and JSONP

jQuery callbacks and JSONP

Hello,

I am trying to fully understand callback names.  I see this code in the jQuery docs:

     
// Using YQL and JSONP
$.ajax({
url: "http://query.yahooapis.com/v1/public/yql",
// the name of the callback parameter, as specified by the YQL service
jsonp: "callback",
// tell jQuery we're expecting JSONP
dataType: "jsonp",
// tell YQL what we want and that we want JSON
data: {
q: "select title,abstract,url from search.news where query=\"cat\"",
format: "json"
},
// work with the response
success: function( response ) {
console.log( response ); // server 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:

           
// the name of the callback parameter, as specified by the YQL service
jsonp: "jims",

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