CF 4.8 and Safari on iOS
-
Contact Form 4.8 won’t work via ajax on Safari Mobile since window.FormData is returning an object and not a function on this browser.
By changing
if (typeof window.FormData !== ‘function’) by if (typeof window.FormData !== ‘function’ && typeof window.FormData !== ‘object’), it fix the problem.
And by removing the used of jquery.form in Contact Form 4.8, it disabled backward compatibility with Internet Explorer 8-9 browser.
Thank you
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘CF 4.8 and Safari on iOS’ is closed to new replies.