JavaScript Tutorials
- What is Javascript?
- What is BOM?
- What is DOM?
- Variable
- check variable value is empty
- JavaScript Output
- Functions
- Javascript Events
- Input Events
- onchange Event
- Javascript Output methods
- If else statement
- Arrays
- Pattern Validation
- Form Validation
- Inner Html Form Validation
- Inline Form Validation
- Checkbox Validation
- Inline Inner Html Form Validation
- Server side php Validation
- Validate a HTML Form with PHP
- window and window location
- Get Text Value
- Get hidden field value
- JavaScript & PHP
- Date Format
- get php value in javascript
- Redirect page & Autoredirect page
- Auto Refresh page & Div
- How to get select text value from Dropdown box
- How to clear browser history in javascript
- Checkbox Problems
- Select option problems
- Popup Contact Form
- Sidebar Contact Form
- How to use a multistep Form or Form wizard
- Auto Calculate Price
- print Application Form
- Auto Calculate GST in Javascript by select price
- Calculate GST by input value in text box Jquery
- Calculate Discount
- onClick Checkbox
- autofil form data click on checkbox
- Show subcategory list
- Show city list as per state
- Show district list as per country and state
- Show good morning good night wish
- image upload with preview image
- Print Div Content
- Show modal popup on page load
- filter table data usign javascript.
- Character Limit Validation.
- Validate File 5MB Upload
- Validate Special character
- More File Upload
- Call JavaScript Function After Page Load
- Drop Down First option Value Disabled --- Please Select ---
- How to Disable Submit Button After Form Submission
- How to disable browser back button using Jquery?
- How to Remove selected item from second & third dropdown list?
- Interview Questions of JavaScript.
Important Link
How to validate Maximum Size upload file?
File name : index.php
<input type="file" id="file_upload" name="file_upload" class="form-control" onchange="Validatefile(this.id,this.value)" >
<span class="required" aria-required="true">(Only PDF,JPG,PNG files are allowed, File Size Allowed 5MB)</span>
<span class="required" id="file_upload_error" aria-required="true"></span>
<script>
function Validatefile(id,val){
var image =$('#'+id).val();
if(image!=''){
var checkimg = image.toLowerCase();
if (!checkimg.match(/(\.jpg|\.png|\.JPG|\.PNG|\.jpeg|\.JPEG|\.pdf)$/)){
$('#'+id).focus();
alert("Invalid file extension, Only jpg,jpeg,png,bmp,pdf files are Allowed");
$('#'+id).val('');
return false;
}
var img = document.getElementById(id);
var fsize=img.files[0].size;
const file = Math.round((fsize / 1024));
if(file >= 5000) {
alert("File size too large, Please select a file less than 5mb");
$('#'+id).val("");
return false;
}
return true;
}
}
</script>
Demo Example
File name : index.php
File name : index.php