Everything is working smoothly on IE8, but seems to encounter issues on IE9 and the latest version of Chrome.
I have a hunch that the problem lies in using undefined classnames as markers for selecting specific elements, similar to how an element's ID works. For instance, dnaRow
The class dnaRow
actually does not exist. Once I remove class="dnaRow"
, everything starts functioning correctly again.
<TR>
<TD width="18%">Duration of the Contact</TD>
<TD width="82%">
<input tabIndex="4" type="text" id="contactduration" name="contactduration" class="dataentry blueFont_inset"
<c:choose>
<c:when test="${update}">
value='<c:out value="${apptLength}" />'
</c:when>
<c:when test="${contactInfoMap != null && contactInfoMap['p_actual_appointment_length'] != null}">
value="<c:out value="${ contactInfoMap['p_actual_appointment_length']}" />"
</c:when>
</c:choose>
/>
</TD>
</TR>
<tr class="dnaRow">
<td width="18%" class="dna" >
DNA$
</td>
<td width="82%" style="float: left; padding-right: 3px; white-space:nowrap" >
<div id="dnaDiv">
<input tabIndex="5" id="dnaCheckbox" type="checkbox" >
</div>
</td>
</tr>