Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7713937
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T01:59:48+00:00 2026-06-01T01:59:48+00:00

I have an array of objects in a known format, it could look like

  • 0

I have an array of objects in a known format, it could look like this:

var items = [{id : 1,
            desc : "Funny things",
            tags : ["Snippet","Funny"],
            title : "Awsome"},
          {id : 2,
            desc : "Hello World",
            tags : ["Fun","Funny"],
            title : "What"},
          {id : 3,
            desc : "True story",
            tags : ["Snippet","Cool"],
            title : "Is it possible with things?"
             }];

I want to create some serach ability in my page that serach for diffrent things inside the items and later display it in some way. Does any one know a plugin that could help me with this?

I was just trying using jQuery grep function and came up with this snippet for my example:

var serach = "things"; // Try to get the tags

var obj = $.grep(items, function(n, i){

    // Condition one
    if(n.desc.indexOf(serach)>=0)
    {
        return true;
    };
    // Condition two
    if(n.title.indexOf(serach)>=0)
    {
        return true;
    };

    // Condition there
    var foundTag = false;
    for(var i = 0; i<n.tags.length;i++){
        if(n.tags[i].indexOf(serach)>=0)
        {
            foundTag = true;
            return true;
        };
    }
    if(foundTag){return true};

    return false;
});

http://jsfiddle.net/Az2rA/1/

It’s pretty straight forward and works. However it dosn’t solve things like priority diffrent properties. How could add a priority to the function. For example, if the serach expression is found in the title it should apper higher in the “matched” array.

So if anyone have any good input or a good plugin I will find it helpful!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T01:59:49+00:00Added an answer on June 1, 2026 at 1:59 am

    You can use jQuery.each creating and array with a weight for each match and then a sort.

    Like this:

    //var serach = "Fun"; Try the tags
    var serach = "things"; // Try to get the tags
    
    var obj = [];
    $.each(items, function(i, n) { 
        // Condition one
        if(n.desc.indexOf(serach)>=0)
        {
            obj.push({ weight: 0, value: n });
        };
        // Condition two
        if(n.title.indexOf(serach)>=0)
        {
            obj.push({ weight: 10, value: n });
        };
    
        // Condition there
        var foundTag = false;
        for(var i = 0; i<n.tags.length;i++){
            if(n.tags[i].indexOf(serach)>=0)
            {
                foundTag = true;
                obj.push({ weight: 5, value: n });
            };
        }
        if(foundTag){
           obj.push({ weight: 5, value: n });   
        };
    
    });
    
    obj.sort( function(a, b) {
        return a.weight < b.weight;
    });          
    

    ​

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an array of CLLocation objects and I'd like to be able to
I have an array of custom objects. MyCustomArr[]. I want to convert this to
I have an array of Objects known as players, which is sorted often (so
I would like to have an array model objects to be serialized to a
I have an array of appointment objects, and I would like to sort by
I have an unsorted array of objects. I need to know how I can
I have an array of objects which populate a UITableView . When a user
I have an Array of Objects that need the duplicates removed/filtered. I was going
I have an array of objects that have QTTime structs as attributes. The objects
I have an array of objects, and want the objects to be able to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.