Wow thanks for this :D at last an answer that works :)

Thanks and regards

On Aug 20, 4:22 pm, nikhil <[EMAIL PROTECTED]> wrote:
> In jquery.autocomplete.js  make changes  in following function which
> is on line 341
>
> -> change parameter q with any other character or comment this line of
> parameter.
>
>         $.ajax({
>                                 // try to leverage ajaxQueue plugin to abort 
> previous requests
>                                 mode: "abort",
>                                 // limit abortion to this input
>                                 port: "autocomplete" + input.name,
>                                 dataType: options.dataType,
>                                 url: options.url,
>                                 data: $.extend({
>                                         q: lastWord(term),
>                                         limit: options.max
>                                 }, extraParams),
>                                 success: function(data) {
>                                         var parsed = options.parse && 
> options.parse(data) || parse(data);
>                                         cache.add(term, parsed);
>                                         success(term, parsed);
>                                 }
>                         });
>
> On Jul 21, 11:21 am, MarvinC <[EMAIL PROTECTED]> wrote:
>
> > i'm having problems with remote query forautocomplete.  the q is
> > already being used bydrupaland it seems thatautocomplete'sq
> > parameter conflicts withdrupal'sq parameter being used by menu.
>
> > Is there a way to change theautocompletesearch parameter q to other
> > variable (ex mysearch?searchTerm=foo)
>
> > any tips on makingautocompletework withdrupalwill be greatly
> > appreciated
>
> > thanks and regards
>
>

Reply via email to