Side navigation
#9383 closed bug (invalid)
Opened May 22, 2011 01:03PM UTC
Closed May 22, 2011 08:02PM UTC
data from assoc array (object) not accessible
Reported by: | anonymous | Owned by: | |
---|---|---|---|
Priority: | low | Milestone: | 1.next |
Component: | misc | Version: | 1.6.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Hello,
following lines work with jQuery 1.4.4. After update to 1.6.1 it produces unexpected results, when debugging using firebug:
var searchAttributes = { ... };
....
console.log( searchAttribtes );
console.log( searchAttribtes['playerID'] );
The first line returns the expected contents of the objects with the key 'playerID' set.
The next line returns (an empty string).
As it stated switching to 1.4.4 and not changing any part of the code returns the correct value.
best regards
it should have stated:
searchAttribtes[playerID]