-
-
Notifications
You must be signed in to change notification settings - Fork 367
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ufForm uses the largely unsupported set
FormData method.
#717
Comments
@x00x70 can you look in to this? |
i can look, but am completely stacked right now |
No rush! |
So i've looked into this. in its current form it might not be easy to implement. Edge, IE 10 and Safari do not have FormData methods beyond
When i originally implemented the formData object, it was to enable image upload via ajax. re-implementing this without a formData object might be a difficult challenge, as i seem to recall i used the formData objects for a reason. thoughts? |
Does library like Dropzone use That, or handle checkbox the traditional way php side ? 😈 |
Another way could be to append each form input to an empty See: https://stackoverflow.com/questions/5392344/sending-multipart-formdata-with-jquery-ajax |
It looks like I'd also like to generalize |
There does appear to be a polyfill, but I'm not sure how it's supposed to work client-side without Node. |
Actually, we may be able to solve this problem (and many others) simply by having |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Still an issue I think? |
Well, support for |
Ok. There are still other reasons for rewriting/redesigning |
Evidently they'd appreciate the help: https://github.com/jquery-form/form#pull-requests-needed |
As documented at MDN, full support for FormData is rare among browsers. This includes the
set
method used in ufForm. An alternative should be implemented, that gets executed instead if feature detection reveals that the required function is missing.The text was updated successfully, but these errors were encountered: