penguinspeaks
Technical User
Once again you all have come to my rescue so I am back.
Let me explain what I need. I have a barcode scanner that scans the number into whatever field the curser is in when the scanning takes place.
What I want to do is as soon as the scan takes place, and the field is populated, submit the form.
The onchange does not do this or is it even suppost to? I have read that this is mor for dropdown menus than regular texxt fields.
This is what I have but it does not submit automatically when the field receives data. Is there a function of some sort that can accomplish what should happen here?
Let me explain what I need. I have a barcode scanner that scans the number into whatever field the curser is in when the scanning takes place.
What I want to do is as soon as the scan takes place, and the field is populated, submit the form.
The onchange does not do this or is it even suppost to? I have read that this is mor for dropdown menus than regular texxt fields.
Code:
<form action="shippingasp.asp" onchange="this.form.submit()" method="post" name="sform1">
This is what I have but it does not submit automatically when the field receives data. Is there a function of some sort that can accomplish what should happen here?