I have two input
in a form, which is actually a score of a game. I want you to send this board with focusout()
when the user populate the two fields of form
.
My form looks like this:
<form method="post" id="form1" action="teste2.php">
<label>Time1</label>
<input type="text" name="gols1" id="gols1">
<label>Time2</label>
<input type="text" name="gols2" id="gols2">
</form>
It's a simple form with two inputs and I want to send it without having to put submit button, I want it to send when I lose focus.