Guest User

Untitled

a guest
May 20th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. // replace if ( typeof window.FormData !== 'function' ) {
  2. if ( typeof window.FormData === undefined ) {
  3.  
  4. // before $.ajax send submit
  5. $('input[type=file]',$form).each(function() {
  6. var files = $(this).prop('files');
  7. if ( files != undefined && files.length <= 0 ) {
  8. formData.delete($(this).attr('name'));
  9. }
  10. });
Add Comment
Please, Sign In to add comment