<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Autocomplete for JQuery.js</title>
	<atom:link href="http://www.ramirezcobos.com/labs/autocomplete-for-jquery-js/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ramirezcobos.com</link>
	<description>Programming Web with PHP, CSS, Javascript and ∞</description>
	<lastBuildDate>Thu, 19 Jan 2012 14:21:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: tim</title>
		<link>http://www.ramirezcobos.com/labs/autocomplete-for-jquery-js/comment-page-2/#comment-13403</link>
		<dc:creator>tim</dc:creator>
		<pubDate>Wed, 07 Dec 2011 17:46:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.ramirezcobos.com/?page_id=125#comment-13403</guid>
		<description>like i said, the query i&#039;m using is: LIKE ‘%$var%’
meaning it does take out all records holding AM: such as:
AMsterdam, flAMe, WilliAM
but the script doesn&#039;t it only selects the records Starting with AM
(about the case sensitive; i&#039;m only using capitals for illustration reasons)
that leaves me with the question; why only does the script selects the records starting with the exact search input??</description>
		<content:encoded><![CDATA[<p>like i said, the query i&#8217;m using is: LIKE ‘%$var%’ </p>
<p>meaning it does take out all records holding AM: such as:</p>
<p>AMsterdam, flAMe, WilliAM </p>
<p>but the script doesn&#8217;t it only selects the records Starting with AM</p>
<p>(about the case sensitive; i&#8217;m only using capitals for illustration reasons)</p>
<p>that leaves me with the question; why only does the script selects the records starting with the exact search input??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Antonio Ramirez</title>
		<link>http://www.ramirezcobos.com/labs/autocomplete-for-jquery-js/comment-page-2/#comment-13317</link>
		<dc:creator>Antonio Ramirez</dc:creator>
		<pubDate>Mon, 05 Dec 2011 12:07:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.ramirezcobos.com/?page_id=125#comment-13317</guid>
		<description>The only thing you need is to modify your search script on the server side. Remember that will be depending on the way your database collation is set (at least with mySQL) search is case sensitive...
Cheers</description>
		<content:encoded><![CDATA[<p>The only thing you need is to modify your search script on the server side. Remember that will be depending on the way your database collation is set (at least with mySQL) search is case sensitive&#8230; </p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Antonio Ramirez</title>
		<link>http://www.ramirezcobos.com/labs/autocomplete-for-jquery-js/comment-page-2/#comment-13316</link>
		<dc:creator>Antonio Ramirez</dc:creator>
		<pubDate>Mon, 05 Dec 2011 12:03:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.ramirezcobos.com/?page_id=125#comment-13316</guid>
		<description>Hi Mathias, you can stop the multiple search on its options and after lookup you will have to hack its internal code (maybe including a new option?) to stop more autocompletes</description>
		<content:encoded><![CDATA[<p>Hi Mathias, you can stop the multiple search on its options and after lookup you will have to hack its internal code (maybe including a new option?) to stop more autocompletes</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tim</title>
		<link>http://www.ramirezcobos.com/labs/autocomplete-for-jquery-js/comment-page-2/#comment-13057</link>
		<dc:creator>tim</dc:creator>
		<pubDate>Mon, 28 Nov 2011 16:25:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.ramirezcobos.com/?page_id=125#comment-13057</guid>
		<description>ps. the &quot;no results&quot; is in the autocomplete.jquery.js so skip that.
as for the search returns i am using the xml version
and the database does return records all holding the &quot;AM&quot; variable
anywhere in the field.
I am using LIKE &#039;%$var%&#039; in the query so it should be in the script i presume...</description>
		<content:encoded><![CDATA[<p>ps. the &#8220;no results&#8221; is in the autocomplete.jquery.js so skip that.</p>
<p>as for the search returns i am using the xml version<br />
and the database does return records all holding the &#8220;AM&#8221; variable<br />
anywhere in the field.</p>
<p>I am using LIKE &#8216;%$var%&#8217; in the query so it should be in the script i presume&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tim</title>
		<link>http://www.ramirezcobos.com/labs/autocomplete-for-jquery-js/comment-page-2/#comment-13054</link>
		<dc:creator>tim</dc:creator>
		<pubDate>Mon, 28 Nov 2011 14:48:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.ramirezcobos.com/?page_id=125#comment-13054</guid>
		<description>hi,
unlike Herry, do i think its neat to have a autoSuggest that shows
several combinations not necessarily Starting with the correct phrase.
Meaning: a search on a variable: AM should show a dropdown like
Amsterdam, but also flAMe and Prince WilliAM etc...
also, at the same time i don&#039;t want no &quot;no results&quot; message returned at any time.
how to achieve this?</description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>unlike Herry, do i think its neat to have a autoSuggest that shows<br />
several combinations not necessarily Starting with the correct phrase.</p>
<p>Meaning: a search on a variable: AM should show a dropdown like<br />
Amsterdam, but also flAMe and Prince WilliAM etc&#8230;</p>
<p>also, at the same time i don&#8217;t want no &#8220;no results&#8221; message returned at any time.</p>
<p>how to achieve this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthias</title>
		<link>http://www.ramirezcobos.com/labs/autocomplete-for-jquery-js/comment-page-2/#comment-12251</link>
		<dc:creator>Matthias</dc:creator>
		<pubDate>Sat, 05 Nov 2011 23:19:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.ramirezcobos.com/?page_id=125#comment-12251</guid>
		<description>Hey! This is a nice script and almost the thing I was looking for. I downloaded &quot;Autocomplete Plugin for JQuery 1.3.2&quot; and played around with it. Can I somehow configure that I only want to search one entry and not more, so no separation would be needed. I&#039;d also like to disable the autocompletion after an entry has been found and checked (clicked or chosen by the arrow keys and confirmed with return key). So I can add additional infos without trying to get another lookup. What I want to do: provide a list of street names for and add a house number. I appreciate your help!
Thanks and cheers
Matthias</description>
		<content:encoded><![CDATA[<p>Hey! This is a nice script and almost the thing I was looking for. I downloaded &#8220;Autocomplete Plugin for JQuery 1.3.2&#8243; and played around with it. Can I somehow configure that I only want to search one entry and not more, so no separation would be needed. I&#8217;d also like to disable the autocompletion after an entry has been found and checked (clicked or chosen by the arrow keys and confirmed with return key). So I can add additional infos without trying to get another lookup. What I want to do: provide a list of street names for and add a house number. I appreciate your help!</p>
<p>Thanks and cheers<br />
Matthias</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Antonio Ramirez</title>
		<link>http://www.ramirezcobos.com/labs/autocomplete-for-jquery-js/comment-page-2/#comment-9561</link>
		<dc:creator>Antonio Ramirez</dc:creator>
		<pubDate>Thu, 28 Jul 2011 11:36:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.ramirezcobos.com/?page_id=125#comment-9561</guid>
		<description>That is a very general error, very difficult for me to help you out, try this:
&lt;code&gt;
$.ajax({
    /* ajax options omitted */
    error: function (xmlHttpRequest, textStatus, errorThrown) {
         if(xmlHttpRequest.readyState == 0 &#124;&#124; xmlHttpRequest.status == 0)
              return;  // it&#039;s not really an error
         else
              // Do normal error handling
});
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>That is a very general error, very difficult for me to help you out, try this:</p>
<p><code><br />
$.ajax({<br />
    /* ajax options omitted */<br />
    error: function (xmlHttpRequest, textStatus, errorThrown) {<br />
         if(xmlHttpRequest.readyState == 0 || xmlHttpRequest.status == 0)<br />
              return;  // it's not really an error<br />
         else<br />
              // Do normal error handling<br />
});<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Herry</title>
		<link>http://www.ramirezcobos.com/labs/autocomplete-for-jquery-js/comment-page-2/#comment-9555</link>
		<dc:creator>Herry</dc:creator>
		<pubDate>Wed, 27 Jul 2011 10:33:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.ramirezcobos.com/?page_id=125#comment-9555</guid>
		<description>Still running into issues...
mostly an error which says:
AJAX error: [object XMLHttpRequest]
E.g. I have the script running perfectly well. I look up some information, and submit my form. while displaying the results the search form is placed on the page again (exactly the same functions being called), but now when I type in a few letters in the search box, it gives me the above mention error.
Any idea?</description>
		<content:encoded><![CDATA[<p>Still running into issues&#8230;<br />
mostly an error which says:<br />
AJAX error: [object XMLHttpRequest]</p>
<p>E.g. I have the script running perfectly well. I look up some information, and submit my form. while displaying the results the search form is placed on the page again (exactly the same functions being called), but now when I type in a few letters in the search box, it gives me the above mention error.<br />
Any idea?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Herry</title>
		<link>http://www.ramirezcobos.com/labs/autocomplete-for-jquery-js/comment-page-2/#comment-8616</link>
		<dc:creator>Herry</dc:creator>
		<pubDate>Sat, 11 Jun 2011 22:15:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.ramirezcobos.com/?page_id=125#comment-8616</guid>
		<description>OK, I solved my issue by downloading from the direct link, instead of the mirror. Apparently there&#039;s some differences.
I am still struggling with the valueSep tho. Setting it to an impossible value, as mentioned above, doesn&#039;t help.
But furthermore I am really happy! Thanks a lot!</description>
		<content:encoded><![CDATA[<p>OK, I solved my issue by downloading from the direct link, instead of the mirror. Apparently there&#8217;s some differences.</p>
<p>I am still struggling with the valueSep tho. Setting it to an impossible value, as mentioned above, doesn&#8217;t help.<br />
But furthermore I am really happy! Thanks a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Herry</title>
		<link>http://www.ramirezcobos.com/labs/autocomplete-for-jquery-js/comment-page-2/#comment-8614</link>
		<dc:creator>Herry</dc:creator>
		<pubDate>Sat, 11 Jun 2011 21:25:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.ramirezcobos.com/?page_id=125#comment-8614</guid>
		<description>Some additional info, which hopefully may ring a bell.
If I set cache: false, it makes it even worse.
With cache true, I only get too many wrong results when I type the amount of chars I set in minChars (3). With cache set to false, I get all the wrong results everytime.
PS to avoid sql-injection, I added mysql_real_escape_string() to my var.</description>
		<content:encoded><![CDATA[<p>Some additional info, which hopefully may ring a bell.<br />
If I set cache: false, it makes it even worse.<br />
With cache true, I only get too many wrong results when I type the amount of chars I set in minChars (3). With cache set to false, I get all the wrong results everytime.</p>
<p>PS to avoid sql-injection, I added mysql_real_escape_string() to my var.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Served from: www.ramirezcobos.com @ 2012-02-06 18:53:56 by W3 Total Cache -->
