jQuery.ajax({dataType:...}) supports several known dataTypes (xml, json,jsonp, script,text, or html).
Is there a way to add your own datatype handlers like:
var wcf = function(data){...}
jQuery.ajax({dataType:wcf, ...});
Obviously I've already tried this, and it doesn't work. But is there another way?