// otherwise return plain text.
httpData: function(r,type) {
var ct = r.getResponseHeader("content-type");
- var data = ( !type || type == "xml" ) && ct && ct.indexOf("xml") >= 0;
- data = data ? r.responseXML : r.responseText;
+ var data = !type && ct && ct.indexOf("xml") >= 0;
+ data = type == "xml" || data ? r.responseXML : r.responseText;
// If the type is "script", eval it
if ( type == "script" ) eval.call( window, data );
if ( a && a.constructor == Function && jQuery.fn.ready )
return jQuery(document).ready(a);
- // Make sure t hat a selection was provided
+ // Make sure that a selection was provided
a = a || jQuery.context || document;
/*
*/
// Watch for when a jQuery object is passed as the selector
- if ( a.jquery )
- return a;
+ if ( a.jquery ) return a;
// Watch for when a jQuery object is passed at the context
- if ( c && c.jquery )
- return jQuery(c.get()).find(a);
+ if ( c && c.jquery ) return c.find(a);
// If the context is global, return a new object
if ( window == this )