Removed unnecessary instances of === or !==.
[jquery.git] / ajax / ajax.js
index ea189bc..87a90b3 100644 (file)
@@ -115,7 +115,7 @@ $.fn.load = function(a,o,f) {
                f = o;
                o = null;
        }
-       if (o !== null) {
+       if (typeof o !== 'undefined') {
                o = $.param(o);
                t = "POST";
        }