Railo.Ajax.submitForm
This example shows how to submit any form of the dom via ajax.
In this case the form is submitted any 3 secs implementing an auto-save scenario. Try to write some data!
function callback(data,textStatus){
var el = document.getElementById('messageBox');
el.innerHTML = data;
}
window.onload = function(){
setInterval("Railo.Ajax.submitForm('autoSave','/RailoAjax/tests/functions/files/save.cfm',callback)",3000);
}