" Live as if you were to die tomorrow. Learn as if you were to live forever.. "
- Mahatma Gandhi

The Difference Between .Find() And .Filter() Methods In jQuery

Posted on November 23rd, 2015 by Dukhabandhu Sahoo

If you are new to jQuery, you may have confusion with the jQuery find() and filter() methods. The reason is both find() and filter() methods are very similar. But the way they work is different! The filter() method filters the elements from current set while the find() method searches child elements of selected element. In […]

How to select all fields or only input fields of a form by jQuery

Posted on November 23rd, 2015 by Subranil Dalal

At times we are in situations where we have to programmatically select all fields or only input fields of a form. We can select every field one by one by using element id, class, tag name or other jQuery selectors, but it is a lengthy process. Suppose we have to disable a form’s elements. STEP […]