Hi, I'm not really gr8 with ajax and javascript so I ask for help. Here is the deal, I have the image form upload working the old fashion way:
<form action="db/photo/do_upload" method="post" enctype="multipart/form-data"> <fieldset id="upload_form">
<input type="file" name="userfile" size="20" />
</fieldset>
<button type="button" class="ui-state-default">Upload</button>
</form>
What I want is to make web page more attractive by making this with ajax, how can I do this :
Once the Upload button is clicked - Start uploading the image - Then while the image is uploading display some kind of ajax-loader - When image is done uploading print out something like thank you
I have a php part already implemented-working I just need some help with this. Thank you