- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to filter object array based on attributes in jQuery?
To filter object array based on attributes in jQuery, use the map() method with JSON.
Example
You can try to run the following code to learn how to filter object array based on attributes in jQuery,
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $(document).ready(function(){ var json ={"DEPARTMENT": [ { "id":"1", "deptemp":"840", "shares":"1100", }, { "id":"2", "deptemp":"1010", "shares":"1900", }, { "id":"1", "deptemp":"350", "shares":"510", }, { "id":"2", "deptemp":"575", "shares":"1900", }]}; json.DEPARTMENT = $.map(json.DEPARTMENT,function(val,key) { if(Number(val.deptemp) <= 500 && Number(val.shares) >= 500) return val; }); for(var i in json.DEPARTMENT) $("p").html("Department Employees: "+json.DEPARTMENT[i].deptemp+" , Shares:"+json.DEPARTMENT[i].shares) }); }); </script> </head> <body> <p></p> <div></div> </body> </html>
- Related Articles
- Filter an object based on an array JavaScript
- How to filter documents based on an array in MongoDB?
- Filter array based on another array in JavaScript
- Filter the properties of an object based on an array and get the filtered object JavaScript
- C# Program to filter array elements based on a predicate
- Manipulate Object to group based on Array Object List in JavaScript
- Filter an array containing objects based on another array containing objects in JavaScript
- Filtering Images based on size attributes in Python?
- How to use jQuery selectors on custom data attributes using HTML5?
- How to compare attributes of different objects in MongoDB object array?
- How to define multiple CSS attributes in jQuery?
- Sort object array based on another array of keys - JavaScript
- How to add attributes to an HTML element in jQuery?
- How to remove all style attributes using jQuery?
- Exporting delivery unit based on time filter in SAP HANA

Advertisements