I Have a combo box which is supposed to trigger an event using onchange, for some reason, its not working (the function it is) and am tired of trying to figure it out on my own, can someone take a look at the function, and the onchange event which is suposed to call it?
Thanks
(my javascript function in the <HEAD>)
<SCRIPT TYPE="TEXT/JAVASCRIPT">
function findNum() {
document.date.c_num.value = <?php echo $result1['C_NUMBER']; ?>
}
</SCRIPT>
(the combo box, whos calls the function, onchange)
<SELECT NAME="ADATE" SIZE="1" onchange="findNum()">
π