Im currently working on a basic form. What i want to do with this form is that when you hit submit/button to first change the value of a field and then submit the form as usual. It all looks a bit like this:
<form name="myform" id="myform" action="action.php">
<input type="hidden" name="myinput" value="0" />
<input type="text" name="message" value="" />
<input type="submit" name="submit" onclick="DoSubmit()" />
</form>
And this is how far ive come with the javascript. It changes "myinput"'s value to 1 but does not submit the form. Im really a javascript noobie so forgive me if this is just a too simple question but im just not getting the hang of it really.
function DoSubmit(){
document.myform.myinput.value = '1';
document.getElementById("myform").submit();
}
Thank you in advance