suppose you had the following form:
you could post it to a remote server by adding a click handler to the button that calls:
$.ajax ( { url: "http://www.domain.com/api/remote.cfc", type: "POST", data: "method=yourMethod&" + $("#mainForm").serialize(), success: function(data) { console.log(data); } } )