Validate File Size And Type In A Multiple Input May 18, 2024 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='' Copyand 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(); }); }); CopyUPDATED FIDDLE Share You may like these postsGet Value From Multiple Input And Search Array Match (with And E Or)Angular - Css - Custom Type=file Input, How To Use A Button Instead Of Label?Fill Input Text Forms On Other Website In IframeJquery Move Cursor To End Of Text Input 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"