Ideally, I am looking to achieve the following structure:
<form1 ...>
...
<form2 ...>
//This form uses AJAX to upload a file and then displays the content in a text field below.
</form2>
<input type="text"/>
</form1>
While Firefox is able to handle this setup, Internet Explorer seems to be following W3C rules strictly this time and causing issues.
As a workaround, I need to deal with form2 separately from form1 using JavaScript. Can you offer any guidance on how to approach this?
Thank you in advance.