I have a key value pair which i want to send to server. e.g: var obj = {'item1': true, 'item2': false, ........};
I want to send this information to server by ajax call. But at server side i am unable to get individual value. At server side i am getting "object" as string. I am using jQuery for making an ajax call.
Can anyone please give any idea how to do it?