Validate File Size And Type In A Multiple Input October 03, 2023 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 postsHow To Take A Photo Of An Video Stream? HTML5 JavascriptGet Complete Filepath For Cached ImagesHow Are Images Cached When Loaded Via Php ScriptPreload All Images On A Website With JQuery Or Javascript 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"