How can I make my jquery autocomplete highlight what the user is typing in in any autocompleted results? The code I am using is:

    $("#keyword").autocomplete({ 
        source: "ajax/autocomplete.php?action=keyword", 
        minLength: 2 
    });

Tried this implemented from the link tomasz posted:

    $("#keyword").autocomplete({ 
        source: "ajax/autocomplete.php?action=keyword", 
        highlight: function(value, term) { 
    return value.replace(new RegExp("("+term+")", "gi"),'<b>$1</b>'); 
    },
        minLength: 2 
    });

No luck there either. jQuery autocomplete seems to hate me.

Update: Thanks to David Murdoch, I now have an answer! See @Herman's copy of the answer below.

link|improve this question

1  
Thank you for posting your solution. Worked perfectly for me. – Andrew Sep 29 '10 at 2:14
1  
If you found the solution, you should post it as an answer and accept it. This is considered completely fine; see this FAQ on Meta Stack Overflow. – Justin Morgan Aug 15 '11 at 19:39
2  
@Jaime: Please go ahead and move your answer to... an answer. – Lightness Races in Orbit Aug 15 '11 at 19:55
feedback

2 Answers

up vote 5 down vote accepted

Thanks goes to David Murdoch at http://www.vervestudios.co/ for providing this useful answer:

$.ui.autocomplete.prototype._renderItem = function( ul, item){
  var term = this.term.split(' ').join('|');
  var re = new RegExp("(" + term + ")", "gi") ;
  var t = item.label.replace(re,"<b>$1</b>");
  return $( "<li></li>" )
     .data( "item.autocomplete", item )
     .append( "<a>" + t + "</a>" )
     .appendTo( ul );
};
$("#keyword").autocomplete({ 
  source: "ajax/autocomplete.php?action=keyword", 
  minLength: 2 
});
link|improve this answer
Thanks @Herman Schaaf I am still getting used to SO and did not see the comment about this. :( – Jaime Cross Dec 17 '11 at 5:51
feedback

The code on this site might help you.

link|improve this answer
3  
Please post at least the relevant points of the code here. This isn't really an answer in its current form. – Justin Morgan Aug 15 '11 at 19:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.