[jQuery] Re: Jquery Autocomplete Problem

2009-05-24 Thread Tom Worster
i assume you are using this plugin? http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ if so, why did you put the call to autocomplete() inside an event handler? normally autocomplete() is called on page ready and it establishes its own event handlers. On 5/22/09 1:50 PM, "the_g

[jQuery] Re: Jquery Autocomplete Problem

2009-05-22 Thread the_guru
@wesleycjx I guess the event is called on "keypress" event. i have a similar sort of problem like deafGuru my script is-> $(".stock_item").live("keypress",function(){ console.log($(this)); $(this) .autocomplete("includes/pages

[jQuery] Re: Jquery Autocomplete Problem

2009-03-25 Thread wesley...@gmail.com
Hi, i have a question, how to manually fire the autocomplete event? aa, bb, cc, dd ... $(document).ready(function(){ $("#acTxt").autocomplete(theUrl, { minChars: 2, matchContains: true, max: 20 }); $(".pTxt").click(functio

[jQuery] Re: Jquery Autocomplete Problem

2009-03-15 Thread brian
Don't pass true to clone() as you're copying the event handlers. I suspect that's the problem. On Sun, Mar 15, 2009 at 8:26 PM, deafGuru wrote: > > Hi, > > I have a bug with JQuery Autocomplete plugin. I don't know whether > it's a bug or feature by design. The bug is easy to produce on-demand.