Hello, I'm using this plugin: http://jqueryui.com/demos/autocomplete/#remote
Works great but I would like to use the request URL like this: "www.mysite.com/search/my search input" and not like this: "www.mysite.com/?term=my search input" because I use codeigniter and that's how I work with URLs. So I will need to append the search input like this "/my search input" because I can give the first part of the URL but I don't know how can I change the appending of "?term=" .
The problem is that the URL will be appended with ?term=value and that's what I need to change to /search/value. Codeigniter is not an issue here, the autocomplete code needs changes, I believe.
Any ideas ?
Thanks.