You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm constantly getting the boolean 'false' with the third parameter of the onComplete() method : responseJSON.success in IE9 (which is the only version of IE I'm testing in).
I'm using the basic version of the plugin and the ajax returns from within the PHP:
Should I postpone the response a few milliseconds for IE to get it right? I remember one of the plugins I was trying in the past mentioned that IE needs a few milliseconds delay to get the response.
I seem to have found the problem, but still don't quite know how to resolve it.
The responseJSON contains the image tag, which seem to break the code in IE.
Any idea?
I'm constantly getting the boolean 'false' with the third parameter of the onComplete() method : responseJSON.success in IE9 (which is the only version of IE I'm testing in).
I'm using the basic version of the plugin and the ajax returns from within the PHP:
try {
// code processing upload
echo json_encode(array('success' => true, 'content' => $image));
} catch (Exception $e) {
$message = $e->getMessage();
echo json_encode(array('success' => false, 'error' => $message));
}
It works fine in Firefox, Chrome etc. - it's just IE that fails.
Is there a problem with the onComplete() method and IE?
The text was updated successfully, but these errors were encountered: