Validate File Size And Type In A Multiple Input September 18, 2022 Post a Comment i have 3 input file, i wanna make a javascript validation for 3 input file in one submit button form event onSubmit='' Copy and your click event handler should be, $(document).ready(function(){ $('#upload').click(function(){ alert('hello'); $('input[type="file"]').each(function(){ var thisFile = $(this); var fileSize = thisFile[0].files[0].size; alert(fileSize); }); $('form#dataPribadi').submit(); }); }); Copy UPDATED FIDDLE Share You may like these postsMasking & For Ajax RequestsCheckbox ValidationsUri Regex: Replace Http://, Https://, Ftp:// With Empty String If Url ValidLimiting Input To Specified Regexp With Uppercase Chars In Ie Post a Comment for "Validate File Size And Type In A Multiple Input"
Post a Comment for "Validate File Size And Type In A Multiple Input"