June
June

Reputation: 823

Jquery Plugin for Image upload on click

I want an jquery inline editor that can be placed at more than one place and onclick one should be able to convert image to an image uploaded for eg if there is an image , and user clicks on the image it should show user an image uploader I did this with simple javascript but problem i am facing is it is not that stable like if i upload image twice and other stuffs. Do someone knows of plugin that does this. It should be ajax based

Upvotes: 1

Views: 4667

Answers (2)

Alex R.
Alex R.

Reputation: 63

Unfortunately ajaxupload.js and jeditable.ajaxupload.js does not work with jquery 1.5+ since ajaxupload is using an internal jquery function (jQuery.handleError) which is not part of jquery any more (don't use internal and undocumented functions :-).

Upvotes: 1

Evgeniy Labunskiy
Evgeniy Labunskiy

Reputation: 2042

Try to use Jeditable plugein to Jquery Framework

Here you can find the life example of file upload: http://www.appelsiini.net/projects/jeditable/custom.html

Upvotes: 2

Related Questions