Sorry for the offtopic and cross post but I thought someone might have an
answer.

When I try to dynamically change the value of a text field with the
following code on on IE 4.x for Mac nothing happens.  Any ideas?

Thanks


<html>
<head></head>
<body>
<form method="post" name="theForm" action="">
  <select onChange="update();" name="theSelect" size="10">
    <option value="1">Test 1</option>
    <option value="2">Test 2</option>
  </select>

  <input size="25" name="theInput" maxlength="50" type="TEXT">
</form>

<script Language="JavaScript">
<!--
function update()
{
  document.theForm.theInput.value = "Frank";
}
// -->
</script>

</body>
</html>



------------------------------------------------------------
To subscribe:    [EMAIL PROTECTED]
To unsubscribe:  [EMAIL PROTECTED]
Site:            http://www.working-dogs.com/freetrade/
Problems?:       [EMAIL PROTECTED]

Reply via email to