I allow registered users to submit an image to the server. Problem here is, if image's size is too large or if user's internet connection is slow (many people still use dial up here) it take a while before its submitted. And some users keep clicking submit button while the image is in loading process. At one website, I saw that once user click on file submit, form disappears and loading image appears. How can I do that with jquery?
<form method="POST" ENCtype="multipart/form-data" action="imageupload.asp?Process=Add">
<p align="center"><b>--- Upload Image ---</b><br>
<input type="FILE" size="23" name="FILE">
<input type=submit value="Upload">
</p>
</form>