Am using the ajax file upload plugin from PHP Letter and am using jQuery 1.6.2.The files upload properly, but am unable to user the JSON data returned from the php script, when i check the javascript error consolse am i greeted with this error,
“Uncaught TypeError: Object function (a,b){return new
e.fn.init(a,b,h)} has no method ‘handleError'”
in chrome and
“jQuery.handleError is not a function”
in firefox.
Does any one have a similar experience?
It was when you are trying to use this with latest version of jQuery. handleError function is depreciated from library upper then V 1.5.
I resolve it by just adding this function in my ajaxfileupload.js file.
and it works fine for me.
Also, if you try to use any ajaxSubmit() on same page it will wont work, so i use normal form submit with ajxfileupload. if any one can help in same way please let me know.