Here is the jquery code that is throwing the error:
jQuery.extend({
noConflict: function() {
if ( jQuery._$ )
$ = jQuery._$;
},
isFunction: function( fn ) {
return fn && typeof fn == "function";
},
// args is for internal usage only
each: function( obj, fn, args ) {
if ( obj.length == undefined )
for ( var i in obj )
fn.apply( obj[i], args || [i, obj[i]] );
else
for ( var i = 0, ol = obj.length; i < ol; i++ )
if ( fn.apply( obj[i], args || [i, obj[i]] )
=== false ) break;
return obj;
},
The line:
if ( fn.apply( obj[i], args || [i, obj[i]] ) === false ) break;
is what is throwing the error.
Sorry but javascript this complex is all greek to me. Any ideas?
--
View this message in context:
http://www.nabble.com/1.1-Load-tf3033541.html#a8428851
Sent from the JQuery mailing list archive at Nabble.com.
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/