Hi!
I have three rollover images that i use to submit my form, all three buttons perform diff functions when the form is submitted. The problem is how do i associate different values to these image buttons. I tried to use a hidden field and set its value like this:
This is the form submit script
<script>
<!--
function go_submit(frm_name, act){
frm_name.do_what.value = act;//set the hidden value
frm_name.submit();
}
//-->
</script>
This is how i use it:
<a href="javascript: go_submit(this, 'save');" MouseOut="MM_sw ...
doesnt work, it doesnt submit the form if i try to set the value of the hidden field...can anybody suggest something...