html file upload as part of another form
- by samsina
Idealy I would like to have the following:
<form1 ...>
...
<form2 ...>
//This form uploads a file using AJAX and writes the content into a text field below.
</form2>
<input type="text"/>
</form1>
Firefox handles this but IE likes to follow the rules of W3C this time and it doesn't really work.
So now I have to handle form2 outside of form1 through javascript. Can you provide some help about how to go about this?
Thanks in advance.