
How to validate input type file size in jQuery for multiple records
How to validate input type file size in jQuery for multiple records
Hello everyone, in this post we will examine how to solve the "How to validate input type file size in jQuery for multiple records" programming puzzle.
You can validate input file size in jquery for multiple records by using $.each() method on file input array and validate each file by specifying the max file size limit.-
Validate input type file size for multiple records in jQuery
<!-- HTML Input tag --> <input type="file" name="file" id="file" multiple /> <div id="resp"></div> <!--jQuery CDN with JavaScript Code --> <!-- jQuery CDN --> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> <script> var fileInput = document.getElementById('file'); fileInput.addEventListener("change", function(event){ let files = event.target.files; let ResponseTxt = ''; $(files).each(function(index, file) { if(file.size > 1048576){ ResponseTxt += 'File : '+file.name + ' is greater than 1MB. <br/>'; }else{ ResponseTxt += 'File : '+file.name + ' has a valid size. <br/>'; } }); document.getElementById('resp').innerHTML = ""; document.getElementById('resp').innerHTML += ResponseTxt; }); </script>
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
Don't forget to share this article! Help us spread the word by clicking the share button below.
We appreciate your support and are committed to providing you valuable and informative content.
We are thankful for your never ending support.
Random Code Snippet Queries: Jquery
- How to get closest form input value in jQuery
- JQuery find text and show as bold in html page
- Append method to add text to body not working
- Validate form using jQuery
- How to create read more in jquery
- How to pass javascript variable to laravel route on ajax call
- Ajax done fail ajaxcomplete in not a function
- Get the href link on click anchor in javascript
- How to check object is empty or not in jQuery
- Ajax for multiple form
- How to find closest upper element and append html to below it in jquery
- Mixed Content: The page at 'https://w3codegenerator.com/' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint
- Uncaught TypeError: $.ajax is not a function
- Show and hide target element on click button using javascript/jquery
- Add and remove input fields on click button using jQuery
- How to reset form input element on click
- Jquery-3.6.0.min.js CDN link
- Enable click event on appended element using jQuery
- Execute function after Ajax call is complete
- Uncaught TypeError: $.ajaxSetup is not a function
- (index):128 Uncaught TypeError: MobileNumberVal.test is not a function
- Preview image in BLOB URL format on choose file in jQuery
- How to remove Choose File button in jquery
- Show loading icon on click submit button in jQuery
- JQuery append html to below the target element