doniyor
doniyor

Reputation: 37866

is it possible to submit images using ajax?

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

Answers (3)

Vero
Vero

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

Steffen Heil
Steffen Heil

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

Anoop
Anoop

Reputation: 23208

Yes you can upload images using AJAX request

there are many library but I am using this

Upvotes: 1

Related Questions