How to get the input file size in jQuery ?

The task is to get the fileSize when a user uploads it using JQuery.
Approach:
- Display the text Choose file from system to get the fileSize on the screen.
- Click on the browse button to select the upload file.
- After selecting a file, the function is called which display the size of the selected file.
- The function uses file.size method to display the file size in bytes.
Example 1: This example adds an event to the input[type=file] element and when user uploads the file, the size of the file prints on screen.
| <!DOCTYPE html> <html>  Â<head>     <title>         How to get the input file size in jQuery ?     </title>      Â    <scriptsrc=     </script> </head>  Â<bodystyle="text-align:center;">      Â    <h1style="color:green;">          zambiatek      </h1>      Â    <pid="GFG_UP"style=         "font-size: 15px; font-weight: bold;">     </p>      Â    <inputtype="file"id="File"/>      Â    <br><br>      Â    <pid="GFG_DOWN"style=         "color:green; font-size: 20px; font-weight: bold;">     </p>      Â    <script>         $('#GFG_UP').text("Choose file from system to get the fileSize");         $('#File').on('change', function() {             $('#GFG_DOWN').text(this.files[0].size + "bytes");         });     </script> </body>  Â</html>                      | 
Output:
- 
Before selecting the file: 
 
- 
After selecting the file: 
 
Example 2: This example adds an event to the input[type=file] element and when user uploads the file, the size of the file prints on screen. This example allows the users to upload file of size lesser than 2MB.
| <!DOCTYPE html> <html>  Â<head>     <title>         How to get the input file size in jQuery ?     </title>      Â    <scriptsrc=     </script> </head>  Â<bodystyle="text-align:center;">     <h1style="color:green;">          zambiatek      </h1>      Â    <pid="GFG_UP"style=         "font-size: 15px; font-weight: bold;">     </p>      Â    <inputtype="file"id="File"/>      Â    <br><br>      Â    <pid="GFG_DOWN"style=         "color:green; font-size: 20px; font-weight: bold;">     </p>      Â    <script>         $('#GFG_UP').text("Choose file from system to get the fileSize");         $('#File').on('change', function() {             if (this.files[0].size > 2097152) {                 alert("Try to upload file less than 2MB!");             } else {                 $('#GFG_DOWN').text(this.files[0].size + "bytes");             }         });     </script> </body>  Â</html>                      | 
Output:
- 
Before selecting the file:
 
- 
After selecting the file(size>2MB):
 
 
				 
					 



