I have an array:
var list = JSON.parse('[{"id" = "8", "description" = "test"},{"id" = "10", "description" = "test_2"}]');
I'm using this together other data to post using jQuery's ajax method:
var data = { start: 123403987, list };
Why is the values submitted as:
start=123403987&list[0][id]=8&list[0][description] = "test"...
Where I am expecting:
start=123403987&list[0].id=8&list[0].description = "test"...