Could anyone shed light on what might be the issue here. The code works in IE6, but doesn't appear to fire in Mozilla, and Netscape
Many thanks
--Paul
It's important in life to always strike a happy medium, so if you see someone with a crystal ball, and a smile on their face ...
Code:
function PT_update_height() {
var a=["38","40", "42", "44", "46", "48", "50", "52", "54"];
for (var i=0; i < order.height.length; i++) {
if (order.height[i].checked) {
order.height_details.value=a[i];
}
}
}
Code:
function MM_callJS(jsStr) { //v2.0
return eval(jsStr);
}
Code:
<input type="hidden" name="dress_details" value="notset" />
Code:
<tr>
<td width="11%"><div align="center"><input type="radio" name="height" onClick="MM_callJS('PT_update_height()')"></div></td>
<td width="11%"><center><input type="radio" name="height" onClick="MM_callJS('PT_update_height()')"></center></td>
<td width="11%"><center><input type="radio" name="height" onClick="MM_callJS('PT_update_height()')"></center></td>
<td width="11%"><center><input type="radio" name="height" onClick="MM_callJS('PT_update_height()')"></center></td>
<td width="11%"> <center><input type="radio" name="height" onClick="MM_callJS('PT_update_height()')"></center></td>
<td width="11%"> <center><input type="radio" name="height" onClick="MM_callJS('PT_update_height()')"></center></td>
<td width="11%"> <center><input type="radio" name="height" onClick="MM_callJS('PT_update_height()')"></center></td>
<td width="11%"> <center><input type="radio" name="height" onClick="MM_callJS('PT_update_height()')"></center></td>
<td width="11%"> <center><input type="radio" name="height" onClick="MM_callJS('PT_update_height()')"></center></td>
</tr>
Many thanks
--Paul
It's important in life to always strike a happy medium, so if you see someone with a crystal ball, and a smile on their face ...