Converting formdata type string into JS object – Jquery
I am using ajax to send FormData and receiving the output in the following format Result=A&Status=Approved&Error=&ErrorCode=00000 I want to convert the same into a JS object (key value pair) e.g. {Result: "A", Status: "Approved", Error: "", ErrorCode: "00000"} I can…