I\'m Trying to upload image on with jquery and ajax. But weird thing happened here. In console Log its showing
TypeError: \'append\' called on an obj
Adding:
processData: false,
contentType: false,
will definitely help with the file, an aside to that is if you are doing any sort of passing errors or success messages back to the page, you will want to use json to make your life easier.
example:
dataType: 'json',
this will help with parsing your responses. Without it, it will throw an error.