|
Mailing Lists
|
Home /
Groups /
JQuery
Is this thing on?
Author: Phillip Senn
Short Link: http://www.houseoffusion.com/groups/jquery/thread.cfm/threadid:2155#6565
Ray had some good blog posts about AJAX recently, including using
argumentCollection in the $.ajax call thusly:
$.ajax({
url: 'Remote/City.cfc?queryFormat=column'
,data: {
method:'WhereStateID'
,returnFormat:'json'
,argumentCollection:$.toJSON(mydata)
}
,success: function(result){
if (result.MSG == '') {
...
} else {
$('#msg').text(result.MSG).addClass('err');
};
}
});
And another one about using queryFormat=column in the url.
|
May 20, 2013
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||