[jQuery] [Autocomplete] modify URL at runtime
Hi,
I'm using the autocomplete plugin like that in the ready() event :
$("#ctl00_body_txtSearch").autocomplete("Autocomplete_GetArts.ashx")
.setOptions({
width: "220px"
});
However I need to be able to change the URL (to add a bunch of query
parameters) based on the values of some radio buttons and select
boxes, which should be passed to the server page.
How can I modify the URL before the AJAX call is made ? Is there an
event I can use ?
Thanks