iOS Support for FormData
-
While much older versions of iOS Safari do not support the FormData object, those that do will return typeof ‘object’ rather than ‘function’.
This creates a false positive on the checks for FormData existence in the Submit callbacks for mobile Safari as recently as iOS 10, and triggers the standard POST fallback rather than the usual AJAX submission.
A potential fix has been outlined here:
Changing from
typeof window.FormData !== "function"
totypeof window.FormData === "undefined"
on lines 49 and 188 of includes/js/scripts.js confirmed working in Browserstack iOS 7 Safari.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘iOS Support for FormData’ is closed to new replies.