How to add !important to CSS attribute with jQuery

How to apply !important to CSS Attribute Using jQuery

The !important property is CSS is used to give more importance than normal CSS property.  In css , !important mean “this is important”. Using !important property means ignore all rule and apply it. In jQuery, We use css() methods to set or returns style properties to the selected elements. In this tutorial, I am going … Read more

jQuery Disable Button After Click

jQuery Disable Button After Click

We always use a button in HTML form for submission. When a website responds slow to user after click on the button then, user click multiple times on it. Multiple click on the submit button, send multiple request to the server for processing which is not good for any web application. This tutorial will help … Read more

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