On 4/20/09 10:32 PM, "Pitt Phunsanit" <phunsa...@gmail.com> wrote:
> i found some blobem from autocomplete plugin > valible isearch don't send to php script the value of the field is sent in the "q" parameter. write your php script to use $_GET['q'] instead of $_GET['isearch']. > > $("#isearch").autocomplete("search_result.php?isearch="+$("#isearch").val(),{w > idth: > 542,multiple: true,matchContains:true,cacheLength:0,minChars:1,delay:0}); > and if put in event > $("#isearch").keyup(function(event){ > > $("#isearch").autocomplete("search_result.php?isearch="+$("#isearch").val(),{w > idth: > 542,multiple: true,matchContains:true,cacheLength:0,minChars:1,delay:0}); > }) > it have mulitple layer > how to fix it