on WinXP the alert for getElementById().value shows '500' in IE8, but 'undefined' in FX 1.5 with nothing in the JavaScript Console. What to do ? Thanks.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>rent</title>
</head>
<body>
<table>
<tr>
<td id="rent1" name="rent1" value="500">£500 pcm</td>
</tr>
</table>
<SCRIPT TYPE="text/javascript" LANGUAGE="JavaScript">
<!--hide
alert(document.getElementById("rent1").value);
//stop hiding-->
</SCRIPT>
</body>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>rent</title>
</head>
<body>
<table>
<tr>
<td id="rent1" name="rent1" value="500">£500 pcm</td>
</tr>
</table>
<SCRIPT TYPE="text/javascript" LANGUAGE="JavaScript">
<!--hide
alert(document.getElementById("rent1").value);
//stop hiding-->
</SCRIPT>
</body>
</html>