[jQuery] Autocomplete, can we change the "q" and "limit" parameters name ?

[jQuery] Autocomplete, can we change the "q" and "limit" parameters name ?


Hi,
Is there a way to modify the default names of the two parameters, so
instead of calling /search?q=<bla>&limit=10 it can call /search?
query=<bla>&max=10
I was hoping for something along that way:
$("#searchfield").autocomplete( "/search", {
q: "query",
limit: "max"
});
But didn't find anything related in the doc
The goal being, obviously, to avoid having to alter the server and
adjusting to the parameters it expects.
X+