I'm sorry. My brain is fried, it works on arrays with simple values,
but not arrays with Objects IN them. Mispoke.
For instance, in IE and in Chrome, this works fine:
$a = new Object();
$a['testme1'] = 'tested1';
$a['testme2'] = 'tested2';
$a['testme3'] = 'tested3';
$a.each(function($s){
alert($s);
});
In IE, this works fine, but does not work in Chrome:
$aEle = $('TicketOptions').getElementsByClassName('LoadChecks');
$aEle.each(function($s){
if($s != $sEle) $s.checked = false;
});
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Prototype & script.aculo.us" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~----------~----~----~----~------~----~------~--~---