jQuery filter() Method
The filter() method in jQuery is used to filter a set of elements based on a specified criteria, and it constructs a new jQuery object containing the elements that match the criteria.
SyntaxHere's a breakdown of how it works:
Selection
You start with a jQuery object that contains a set of DOM elements. This can be a selection of all elements of a certain type, class, or any other criteria.
Filter Criteria
You specify a filter criteria using the filter() method. This criteria can be defined as a function or a selector.
As a Function
You can provide a callback function that takes an index and the current element as arguments. The function should return true for elements that should be included in the filtered set and false for elements that should be excluded.
As a Selector
You can also provide a selector string, which filters elements based on the selector.
Filtered Set
The filter() method constructs a new jQuery object containing only the elements that match the specified criteria. Elements that do not match are removed from the selection.
Result
You can then work with the filtered set of elements, applying further methods or operations as needed.
All filters begin with a colon, such as :first, :last, :even.
- One
- Two
- Three
- Four
jQuery filter with Examples
jQuery provides several filters such as :first, :last, :eq() etc. The short list of filter elements below that you can use to narrow down the search for elements in a DOM tree.
- :first - First matched element of the selector's returned set.
- :last - Last and single instance of the element matching the selector's returned set.
- :even - Even elements with a zero-based index within the matched set.
- :odd - Odd elements with zero-based indexing within the matched set.
- :eq(index) - Element that is equal to the given index n within the matched set.
- :gt(index) - All elements that are greater than the given zero-based index within the matched set.
- :lt(index) - All elements that are less than the given zero-based index within the matched set.
- :animated - All elements that are currently being animated at the time the selector is run.
- :header - All header elements (H1...H6).
- :not - All elements that do not match the given selector.
- :checkbox - All elements that match the type checkbox.
- :contains(text) - String of text (case sensitive).
- :disabled - All elements that are disabled.
- :enabled - All elements that are enabled.
- :file - All elements of a certain file type.
jQuery :first example
jQuery :last example
jQuery :even example
jQuery :odd example
jQuery :eq example
jQuery :gt example
- One
- Two
- Three
- Four
- Five
- Six
- Seven
- Eight
- Nine
- Tem
Conclusion
The filter() method is a powerful tool in jQuery for refining and manipulating sets of elements based on specific criteria, making it useful for various DOM manipulation tasks.
- jQuery Interview Questions (Part-2)
- jQuery Interview Questions (Part-3)
- Is jQuery a programming language?
- Why do we need to go for JQuery?
- How to check jQuery version?
- How to multiple version of jQuery?
- What is jQuery CDN?
- Advantages of minified version of JQuery
- How do I check if the DOM is ready?
- How to Use the jQuery load() Method
- Difference between document.ready() and body onload()?
- Is jQuery is a replacement of JavaScript?
- JQuery or JavaScript which is quicker in execution?
- What is the use of param() method in jquery
- How to work with jQuery parent(), children() and siblings()?
- Difference between parent() and parents() in jQuery?
- What does jQuery data() function do?
- How do you check if an element exists or not in jQuery?
- How do I check if an HTML element is empty using jQuery?
- How to run an event handler only once in jQuery?
- How to Disable or Enable a Form Element Using jQuery
- Hide and show image on button click using jQuery
- Difference Between Prop and Attr in jQuery
- How do I check if an element is hidden in jQuery?
- Difference between return false; and e.preventDefault()
- What is each() function in jQuery? How do you use it?
- Which one is more efficient, document.getElementbyId( "myId") or $("#myId)?
- What is the difference between $.map and $.grep in jQuery
- What is the use of serialize method in jQuery
- What is the use of clone method in jQuery?
- What is event.PreventDefault in jQuery?
- Difference between event.PreventDefault and event.stopPropagation?
- What are deferred and promise object in jQuery?
- What are source maps in jQuery?
- What does the jQuery migrate function do?
- Differences Between jQuery .bind() and .live()?
- How can you delay document.ready until a variable is set?
- How to disable cut,copy and paste in TextBox using jQuery?
- How to prevent Right Click option using jquery?
- How does the jQuery pushStack function work?
- Difference between find() and closest() in jquery?
- How To Use Ajax In Jquery?
- How to multiple AJAX requests be run simultaneously in jQuery?
- Can we call C# code behind using jQuery?
- How to include jQuery in ASP.Net project?
- Need to add jQuery file in both Master and Content page?
- Uncaught TypeError: $(…).modal is not a function jquery
- How to check whether a checkbox is checked in jQuery?
- Uncaught ReferenceError: $ is not defined
- How to Convert JSON Date to JavaScript/jQuery date