I have a CFFORM which collects billing info from the customer. It is accordion
style. On the first page of the Accordion there is a Continue button. When the
user clicks the button I want the form to switch to the next Accordion page.
How do I do this? Here is the Code: <cfform name='checkout' format='flash'
width='500' skin='haloOrange'> <cfformgroup type='accordion'> <cfformgroup
type='page' label='Customer Info'> <cfformgroup type='horizontal'
label='Name'> <cfinput name='fName' type='text' label='First name'
width='100'> <cfinput name='lName' type='text' label='Last name'
width='100'> </cfformgroup> <cfinput name='address' type='text'
label='Address' width='300'> <cfinput name='City' type='text' label='City'
width='200'> <cfinput name='state' type='text' label='State' width='20'>
<cfinput name='zip' type='text' label='Zip' width='30'> <cfinput
name='cnext' type='button' value='Continue'> </cfformgroup>
<cfformgroup type='page' label='Billing Info'> <cfinput name='cname'
type='text' label='Name on Card' width='200'> <cfinput name='cNum'
type='text' label='Card Number' width='200'> <cfinput name='expdate'
type='text' label='Exp Date' mask='99/99/9999' width='100'> </cfformgroup>
</cfformgroup> </cfform>