Page is a not externally linkable
starway - 5:50 pm on Aug 26, 2002 (gmt 0)
function changeBgr(element, color) { The cell (or div) you're changing should have the ID set: and the text field is named "field1" and placed inside form1: <form name="form1"> The function should be called like this: <a href="#" onclick="changeBgr('first', '#339966')" title="click to change backgr color"><img src="transp.gif" width=... height=... border="0"></a>
This is rather simple using standard DOM:
document.getElementById(element).style.backgroundColor = color;
document.form1.field1.value = color;
}
<td id="first"> or <div id="second">,
<input type="text" name="field1">
</form>