|
|
I was having the same issue though only with Firefox, try moving the cfform
OUTSIDE the table. It started working for me
<cfform method="post" action="index.cfm?action=signupAthlete"
name="athleteForm" id="athleteForm">
<table width="100%" border="0" cellspacing="2" cellpadding="1">
<tr>
<td align="right" class="formlabels">High School Name:</td>
<td><cfinput type="text" size="17" name="hsName"
id="hsName"
autosuggest="cfc:cfc.school.getHSNamesTA({cfautosuggestvalue})"></td>
</tr>
<tr>
<td align="right" class="formlabels">High School
ZIPcode:</td>
<td><cfinput type="text" name="hsZipcode" size="10"
required="yes" validate="zipcode" mask="99999" message="Please enter your high
school's ZIPcode" bind="cfc:cfc.school.getHSzipcode({hsName})"></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" value="Sign Up Now!" /></td>
</tr>
</table>
</cfform>
|
|