Forums
(@antoinew)
6 years, 2 months ago
Hi @yukikatayama,
Any update regarding this topic?
Thanks
7 years, 5 months ago
I confirm that I saw it in Safari and iOs. The change I shared above did the trick in /wp-content/plugins/contact-form-7/includes/js/scripts.js
@takayukister it comes from if ( typeof window.FormData !== 'function' ) { test which doesn’t work with Safari. if ( typeof window.FormData === undefined ) { seems to work better.
if ( typeof window.FormData !== 'function' ) {
if ( typeof window.FormData === undefined ) {
7 years, 9 months ago
Indeed that’s a major drawback for ajax powered site!
I think that rolling back to 4.7 version is the safest solution until an init function is added again.