id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc,blocking,blockedby
7260,$.each() fails on an object when the object has a key named 'length',lucas.madar@…,,"If you have an object, like this:

{{{
var obj = { name: ""something"", length: 12, height: 32 };
}}}

and then you try to iterate over it using $.each:

{{{
$.each( obj, function( key, value ) {
    ...
} );
}}}

The inner function is never called because jquery treats the object as an array instead of an object. This behavior is unexpected; it should either be documented or fixed.",bug,closed,undecided,1.5,unfiled,1.4.2,invalid,,,,
