> After that I wanted to click the top submit button that submits all > the other form elements to the action page. This of course generates > an error that says element data undefine. >
It looks like you're binding to an id of #submit, but the submit button doesn't have an id="submit", so the ajax call doesn't work. Then you need to make sure to return false; inside that same jquery handler, so that it doesn't try posting the form without the ajax call. Will ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340638 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

