search input at array javascript code example
Example: search input at array javascript
var people = [
{
name: "John Smith",
url: "http://example.com/johnsmith"
},
{
name: "John Johnson",
url: "http://example.com/johnjohnson"
},
{
name: "Bob Thompson",
url: "http://example.com/bobthompson"
},
{
name: "Smith Sanchez",
url: "http://example.com/smithsanchez"
},
{
name: "Bob Sanchez",
url: "http://example.com/bobsanchez"
}
];
$("#search-input").on("keyup", function(){
var searchFor = $("#search-input").val().toLowerCase();
var results = [];
for(var i=0;i -1)
results.push(""+people[i].name+"")
}
if(results.length == 0)
$("#search-results").html("No Results Found");
else
$("#search-results").html(results.join("
"));
});