Reputation: 37866
i am trying to submit the form which contains an image to server using ajax.
it is very important to use ajax, so is it possible to upload an image using ajax? google isnot helping me as i thought. i want that the window wont be reloaded once i submit the form with image inside. i am lazy to make another template for uoloaded-site...
uploading image needs enctype="multipart/form-data"
but is there some ajax solution also?
thanks, appreciate any view and help
Upvotes: 0
Views: 57
Reputation: 1750
You could use jquery and the form plugin. This plugin allows you to submit a form using ajax, including file uploads.
Upvotes: 1
Reputation: 4346
You can upload any file using the FILE API, but the easiest way would probably to submit that form into a iframe... Same result less effort.
Upvotes: 1