imstillatwork
IS-IT--Management
this works:
document.frm_vote.submit();
where frm_vote is the value form name attribute
If I want to submit the form by ID rather than NAME, is this correct?
document.getElementById('frm_vote').submit();
It works, but I am js retarded, and I figured if I came up with it, I better make sure it's correct...
Kevin
document.frm_vote.submit();
where frm_vote is the value form name attribute
If I want to submit the form by ID rather than NAME, is this correct?
document.getElementById('frm_vote').submit();
It works, but I am js retarded, and I figured if I came up with it, I better make sure it's correct...
Kevin