jQuery autocomplete plugin sent request like this
mysite.com/suggestion?term=Sadegh
is there any way to change term querystring key to anot
I assume you're using jQuery UI AutoComplete
You need to provide a callback as the source, like this:
$(...).autocomplete({ source: function(term, callback) { $.getJSON("url", { foo: term }, callback); } });