views:

171

answers:

1

jQuery autocomplete plugin shows results that begin with the query you type into a search box. How would you amend the plugin to allow you to show results that contain the query you are typing? for example, i am searching for people, i want to be able to type either a firstname or a surname, i type 'and' i want it to show Adam *And*erson, James *And*erson, *And*y Smith

+1  A: 

The version of the "autocomplete" plugin I use already has a "matchContains" option. If that's set to true, then it behaves exactly as you describe.

http://www.pengoworks.com/workshop/jquery/autocomplete.htm

Pointy
DOH! I should learn to read. Thanks Pointy... it works
ak