Hi,
for(var attr in hash){
alert(hash[attr]);
Für die Mitleser: in der for-Schleife geht nur
hash[attr], nicht jedoch hash.attr (undefined)
Natürlich, denn hash.attr würde ja auf eine Eigenschaft zugreifen, deren Bezeichner das Textliteral attr ist.
MfG ChrisB
--
“Whoever best describes the problem is the person most likely to solve the problem.” [Dan Roam]
“Whoever best describes the problem is the person most likely to solve the problem.” [Dan Roam]