Marto schrieb:
I have been playing with this Autocomplete plug-in, what can I say,
fantastic. I have noticed one thing however, there seems to be a lot
of chatter recently (see the bottom of
http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/)
regarding the ability to add extra parameters to the "extraParams"
options, specifically when trying to pass the values of other
autocomplete fields.

I have tried some of the methods suggested by other posters, but to no
avail. Can anyone suggest a working method or work around to enable
this.

The latest revision should allow you to specify extra params as callbacks. Eg.

$("...").autocomplete(url, {
 extraParams: {
   someValue: function() { return $("...").val() }
 }
});

Reply via email to