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!
1 Answer