I have created the following web page:
...
<img alt="" src="images/frame.png" id="contact-image" />
<form enctype="multipart/form-data" action="PHPScripts/upload.php" method="POST">
<input type="file" id="browseContactImageButton" name="image"
accept="image/jpg,image/jpeg,image/png,image/gif"
onchange="this.form.submit();" />
</form>
...
I want to be able to upload the the image to file system or database (haven't decided yet) and to be able to see the uploaded image in the <img id="contact-image" /> immediately after the file has been uploaded, without reloading the page, i.e. using AJAX.
Can you show me the concept that I should follow? I know that I am making a mistake by calling the PHPScripts/upload.php on form submitting. My guess is that I should call some javascript function instead, but where do I go from there and what should that function look like? Thanks.