However, I'm not sure I understand the advantage of the above over the
arguably simpler:
jQuery.ajaxSettings.ext = function(o) {
var k, result = {};
if(this.data) {
for(k in this.data)
result[k] = this.data[k]
;
}
if(o){
for(k in o)
result[k] = o[k]
;
};
return result;
};
-- Scott
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery Development" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/jquery-dev?hl=en
-~----------~----~----~----~------~----~------~--~---