> I would like to hide a table based on a fields value that is outside the
table. Does anyone have an example of this?
Help appreciated.
Use the onchange handler of the field to trigger the script which set the
table's style, i.e.
document.getElementById("myTable").style.display = "none"; // Set to "" to
display normally
.......
<table id="myTable">
.......
HTH,
KC