Closed abides closed 10 years ago
It works fine for me. Perhaps you are converting &
to &
somewhere?
Thank you for wake me up about it. Results are coming from php/mysql and i was using like ;
onDataRequest:function (mode, query, callback) { var myrequest = "q="+query
then i do ajax call with data : myrequest
obviously url is like "http://example.com/script.php?q=m&m" and its not working. & char must be url encoded. I just change the code like;
onDataRequest:function (mode, query, callback) { var postdata = []; postdata.push({name:"q",value:query});
then i call ajax with data : postdata
its let the jquery handle rest, now its working.
Close this issue. Solved
How can i add & (amp) char support, forexample when i start type @m&m its cant find it.