$.ajax({
url:"SomeURL",
data: {
fields : ["field1", "field2"],
},
success: function(data) {
}
});
Getting this in the server:
name = fields[] , VALUE = field1
name = fields[] , VALUE = field2
(note the brackets)
Is that a bug? (This starting to happen after I upgraded to 1.5)
Thanx