I wanna change the background color of my tr to white, why might this not be working:
FUNCTION colorCng(e){
var color = "White";
document.myForm.getElementById(e.id).style.backgroundColor = color;
}
<tr id="3">
<td><input id="3" type="text" onClick="popUp(this);"></td>
</tr>
Jason
FUNCTION colorCng(e){
var color = "White";
document.myForm.getElementById(e.id).style.backgroundColor = color;
}
<tr id="3">
<td><input id="3" type="text" onClick="popUp(this);"></td>
</tr>
Jason