Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
why not just change myinput value to 1 in the html? – Andrea Aug 2 '11 at 12:41
of course i could do that, but if thats what i wanted i woulden't have asked about it – Paparappa Aug 2 '11 at 12:42

4 Answers

up vote 6 down vote accepted

You could do something like this instead:

<form name="myform" action="action.php" onsubmit="DoSubmit();">
<input type="hidden" name="myinput" value="0" />
<input type="text" name="message" value="" />
<input type="submit" name="submit" />
</form>

And then modify your DoSubmit function to just return true, indicating that "it's OK, now you can submit the form" to the browser:

function DoSubmit(){
  document.myform.myinput.value = '1';
  return true;
}

EDIT: I'd also be wary of using onclick events on a submit button; the order of events isn't immediately obvious, and your callback won't get called if the user submits by, for example, hitting return in a textbox.

share|improve this answer
Don't you need id attributes for your code to work? – Chris Aug 2 '11 at 13:22
No, you can access forms and their child elements using their name attributes like this. – valderman Aug 2 '11 at 13:30
+1 for pointing out that onclick events are not triggered when submitting by other means than pressing the button itself. – Markus Jan 7 at 20:46
document.getElementById("myform").submit();

This wont work as your form tag has no id.

Change it like this and it should work:

<form name="myform" id="myform" action="action.php">
share|improve this answer
oh it has an ID, im sorry was just a little quick in my coding. edited the previous post. – Paparappa Aug 2 '11 at 12:46

No. When your input type is submit you should have an onsubmit event declared in the markup and then do the changes u want. Meaning, have an onsubmit defined in your form tag.

Otherwise change the input type to a button and then define an onclick event for that button.

share|improve this answer

You're trying to access an element based on the name attribute which works for postbacks to server but javascript responds to the id attribute. Add an id with the same value as name and all should work fine.

<form name="myform" id="myform" action="action.php">
  <input type="hidden" name="myinput" id="myinput" value="0" />
  <input type="text" name="message" id="message" value="" />
  <input type="submit" name="submit" id="submit" onclick="DoSubmit()" />
</form>

function DoSubmit(){
  document.getElementById("myinput").value = '1';
  return true;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.