
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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>
Advertisements