jquery load data
- by nabizan
dumbest question ever... but I want to somehow fill 'gid' value in data load
gid = 123;
from = 33;
to = 44;
$('#x').load('y', {'range['+gid+'][]' : [from , to]});
so I could get
[range] => Array
(
[123] => Array
(
[0] => 33
[1] => 44
)
)
but with this syntax 'range['+gid+'][]' I get 'missing : after property id'. I'm desperate...