How to create an associative javascript/jquery array of this php structure:
$array = array(
'index' => array(
'subindex' => 'default',
'subindex' => 'default'
),
'index2' => array(
'subindex2' => 'default',
'subindex2' => 'default'
)
);
Thanks!
obj['propName'], which kind of makes it look like an associative array....but it's not really an array.