jQuery Validation for File Input Type

jQuery Validation for File Input Type

When we use input type file in HTML form, then we must validate it before form submitted. Client side validation can be easily done using jQuery or JavaScript. In this tutorial, we will see how to validate input type file with jQuery. HTML <div class=”form-group”> <input type=”file” class=”form-control” id=”idaddproof3″ name=”idaddproof” accept=”image/*” required=”required”> <span class=”errorMSG” id=”msgaadhaarfile”></span> … Read more

How to add or remove input fields dynamically Using Jquery

How to add or remove input fields dynamically Using Jquery Dynamic add or remove of input field using jquery is very useful in web projects and commonly now a days. Here in this article, very simple code for dynamic add/remove input field is going to discuss. This is useful when we need multiple input fields … Read more