Question
(CF8) cfform ajax postback
I'm trying to create a simple ajax postback using a cfform and coldfusion 8.
<cfform>
<cfinput type="radio" name="val" value="1">
<cfinput type="radio" name="val" value="2">
<cfinput type="radio" name="val" value="3">
</cfform><cfoutput>#form.val#</cfoutput>
When a radio button is selected I want it to update the value without refreshing the page.
What is the best way to do this?
