FeaturesEdit
SamplesEdit
A simple "GET" function my_request(){ http( "GET" , "test.cfc?method=dosomething" , my_callback ); } Parameters can be passed to the server in any one of the following three formats: As a QueryString Delimited List function my_request(){ params = "attribute1=value1&attribute2=value2"; http( "POST" , "test.cfc?method=dosomething" , my_callback , params ); } As a JavaScript Object() function my_request(){ params = new Object(); params.attribute1 = "value1"; params.attribute2 = "value2"; http( "POST" , "test.cfc?method=dosomething" , my_callback , params ); }
Related LinksEdit
bbbbbbbbb
CompetitorsEdit
|