Hello!
I have what I think is semi-easy. I just can't figure it out.
<html>
<body>
<div id="container">
//scan in barcode here
<div id="repairID">
<table>
<tr>
<td>
Scan ID:
</td>
<td>
<form method="post" name="editRepairForm" action="https://example.com/IDEdit.do" target="frame1">
<input name="scanId" id="scanId" value="" />
<input name="fromLaunchScreen" id="fromLaunchScreen" type="hidden"/>
<input type="submit" id="SubmitForEdit" style="display:none;"/>
</form>
</td>
</tr>
</table>
</div>
//First row of results
<div id="outerdiv">
<iframe name="frame1" id="inneriframe"></iframe>
</div>
</body>
</html>
Okay so here is what I'm looking for. I'll be scanning a barcode into the top div. Then the result will be displayed in the iframe named "frame1".
Here the issue: I need for the next time I scan a barcode for the site to auto populate another DIV with "frame2" in it, then show the results in there. Then.. the next scan auto-populate another div with "frame3" in it and the results show there.. and so on.
There must be an easy way to do that.. right? I'm sorta new to Javascript so go easy on me! :)
Thanks in advance