I have a web form with some fields and a submit button. I have a function that checks a file every second and outputs the value. One field imports this value and displays it.
What I need is as soon as the value on this field is changed, the submit button should be automatically clicked.
For some code:
My form name is form1, Here is the input field:
<input name="code" id="code" type="text" size="64" maxlength="128" onchange="send_data();" />
Here is the JavaScript function I have:
<SCRIPT LANGUAGE="javascript">
function send_data()
{document.form1.submit();}
</SCRIPT>
If I myself type in anything in the field and click outside it, The form will be submitted automatically. But if the value is changed automatically, nothing will happen...
Is there a possibility in Javascript to do this?
onchangeis en event. Event is an action that can be detected by JavaScript. I suppose that Yourautomatically changeis not recognized by JS engine. – marioosh Sep 21 '11 at 10:57document.form1.code.value=res.cd;You need to call manually:send_data(). I think thatonchangeevent (or another) have no chance to occur in that situation. – marioosh Sep 21 '11 at 11:05