Skip to content Skip to sidebar Skip to footer

HighlIght Search Term Using Javascript In An Html

this is my scenario ; I have an html as below, how can I highlight the search term in the results using Javascript ? I mean when I type : Ho -> the first 2 letter of HOME will

Solution 1:

Here is a very basic example:

HTML

Search: <input id="test"/>
<ul id="results"></ul>

Javascript

var results = ["Result1 Description", "Result2 Description", "Result3 Description"];

$("#test").change(function(){
    $("#results").empty();
var searchTerm = $(this).val();


for(var i = 0; i < results.length; i++){
    if(results[i].indexOf(searchTerm) != -1){

        $("#results").append("<li>"+ results[i].replace(searchTerm, "<span class=\"wrap\">" + searchTerm + "</span>") + "</li>");
    }
}
});

Working Example http://jsfiddle.net/t3BZ6/


Post a Comment for "HighlIght Search Term Using Javascript In An Html"