I\'m trying to understand how to use JSONutil to serialize/deserialize JSON between jquery and coldfusion. I am stuck with coldfusion 7 so I can\'t use the returnform
Take a look at https://stackoverflow.com/a/6257891/886591 you can use $getJSON
$.ajax({
dataType: "json",
url: url,
data: data,
success: success
});
There is also a very helpful article by Ben Nadel about converting querys to arrays. Since working with queries can be a pain in json it's easier to convert them to an array first