[jQuery] [autocomplete] matchContains in multiple words

[jQuery] [autocomplete] matchContains in multiple words


http://docs.jquery.com/Plugins/Autocomplete
Say I have the following entry in a data array:
"Quick brown fox"
Is it possible to return this entry when I search for e.g. "qui fox"?
At this moment I can only get this result when searching for "qui" or
"fox", but not "qui fox". I guess what I'm looking for is a way to
split the input, and match each part against the data entries.
Thanks in advance for your help.