Added a check to make sure that a load request isn't done if the element doesn't exist. Fixes #4235.

This commit is contained in:
John Resig 2009-11-11 14:55:32 -05:00
parent c2101245c0
commit 357e2ae989

View file

@ -15,6 +15,10 @@ jQuery.fn.extend({
load: function( url, params, callback ) {
if ( typeof url !== "string" ) {
return this._load( url );
// Don't do a request if no elements are being requested
} else if ( !this.length ) {
return this;
}
var off = url.indexOf(" ");