i have 3 input file, i wanna make a javascript validation for 3 input file in one submit button form event onSubmit=\"\"
Change type of submit button to normal button and use onclick
handler for it by giving a id
as upload
,
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();
});
});
UPDATED FIDDLE