Reputation: 823
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
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
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