<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ersin Acar &#187; auto complete</title>
	<atom:link href="http://ersinacar.com/tag/auto-complete/feed" rel="self" type="application/rss+xml" />
	<link>http://ersinacar.com</link>
	<description>PHP and Web Technologies Freak</description>
	<lastBuildDate>Fri, 14 May 2010 11:57:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Facebook like auto complete input</title>
		<link>http://ersinacar.com/facebook-like-auto-complete-input_49.html</link>
		<comments>http://ersinacar.com/facebook-like-auto-complete-input_49.html#comments</comments>
		<pubDate>Tue, 07 Apr 2009 23:15:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[auto complete]]></category>
		<category><![CDATA[auto suggest]]></category>
		<category><![CDATA[facebook]]></category>

		<guid isPermaLink="false">http://ersinacar.com/?p=49</guid>
		<description><![CDATA[If you used Facebook on a regularly basis, you’ve probably come across their cool autocomplete method of adding multiple recipients to messages. For those that haven’t seen it, here’s a pic:

Guillermo Rauch set out to build something similar and he did a very good job of mimicking this behavior using MooTools v1.2:
]]></description>
			<content:encoded><![CDATA[<p>If you used Facebook on a regularly basis, you’ve probably come across their cool autocomplete method of adding multiple recipients to messages. For those that haven’t seen it, here’s a pic:</p>
<p><img class="alignnone size-full wp-image-48" title="rb_facebook" src="http://ersinacar.com/wp-content/uploads/2009/04/rb_facebook.gif" alt="rb_facebook" width="447" height="298" /></p>
<p><a href="http://devthought.com/">Guillermo Rauch</a> set out to build something similar and he did <a href="http://devthought.com/textboxlist-meets-autocompletion/">a very good job of mimicking this behavior using MooTools v1.2</a>:</p>
]]></content:encoded>
			<wfw:commentRss>http://ersinacar.com/facebook-like-auto-complete-input_49.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The best ajax auto suggestion / complete  scripts</title>
		<link>http://ersinacar.com/the-best-ajax-auto-suggestion-complete_23.html</link>
		<comments>http://ersinacar.com/the-best-ajax-auto-suggestion-complete_23.html#comments</comments>
		<pubDate>Tue, 07 Apr 2009 09:28:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[auto]]></category>
		<category><![CDATA[auto complete]]></category>
		<category><![CDATA[auto suggest]]></category>

		<guid isPermaLink="false">http://ersinacar.com/?p=23</guid>
		<description><![CDATA[1. Ajax Auto Suggest v.2
The AutoSuggest class adds a pulldown menu of suggested values to a text field. The user can either click directly on a suggestion to enter it into the field, or navigate the list using the up and down arrow keys, selecting a value using the enter key. The values for the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>1. Ajax Auto Suggest v.2</strong><br />
<img class="alignnone size-full wp-image-24" style="float: right;" title="as1" src="http://ersinacar.com/wp-content/uploads/2009/04/as1.png" alt="as1" width="258" height="108" />The AutoSuggest class adds a pulldown menu of suggested values to a text field. The user can either click directly on a suggestion to enter it into the field, or navigate the list using the up and down arrow keys, selecting a value using the enter key. The values for the suggestion list are to provided as XML, or as JSON (by a PHP script, or similar). This auto suggest class is very simple to customize and reuse in your web pages. <a href="http://www.brandspankingnew.net/specials/ajax_autosuggest/ajax_autosuggest_autocomplete.html">Take a look here</a> for the demo.</p>
<p><span id="more-23"></span></p>
<p><strong>2. Woork PHP component: Autosuggest</strong><br />
<a href="http://woork.blogspot.com/2008/03/php-components-autosuggest.html">Woork Autosuggest</a> is a simple &#8220;PHP component&#8221; ready to use which implement autosuggest feature using PHP and MySQL. The component is lightweight (only with 8Kb) and ready to use simply customizing some parameters.</p>
<p><strong>3. Spry Auto Suggest Widget</strong><br />
<img class="alignnone size-full wp-image-25" style="float: right;" title="as2" src="http://ersinacar.com/wp-content/uploads/2009/04/as2.png" alt="as2" width="312" height="160" /><a href="http://labs.adobe.com/technologies/spry/samples/data_region/SuggestSample.html">Spry Auto Suggest Widget</a> (provided from Adobe Labs) use Adobe Spry framework to implement auto suggest feature in a input field. <a href="http://labs.adobe.com/technologies/spry/samples/autosuggest/SuggestSample.html">This is an example</a> of using a Spry region and non-destructive filter to create an auto suggest widget. The suggestions can be displayed in any HTML structure. Spry uses the the tag ID to identify the suggest list container. <a href="http://labs.adobe.com/technologies/spry/samples/autosuggest/SuggestSample.html">In this example</a>, there are three different HTML structures based on: table, div-span, ul-li.</p>
<p><strong>4. Facebook-Like Auto Suggest</strong><br />
<img class="alignnone size-full wp-image-26" style="float: right;" title="as3" src="http://ersinacar.com/wp-content/uploads/2009/04/as3.png" alt="as3" width="269" height="129" />Guillermo Rauch&#8217;s <a href="http://devthought.com/textboxlist-meets-autocompletion/">Facebook-like Auto Suggest</a> is another auto suggest script which simulate Facebook auto suggest feature. It works by caching all the results from a JSON Request and feeding them to the autocompleter object. When a item is added as a box, it’ removed from the feed array, and when the box is disposed it’s added back, so that it becomes available in the list when the user types.<br />
<strong><br />
5. jSuggest 1.0</strong><br />
<a href="http://www.gimiti.com/kltan/wordpress/?p=40">jSuggest</a> is yet another auto-completer for your text input box. It mimics the functionality of Google suggest. jSuggest will also bind item selection to your up and down arrows and also allow you to select the suggestions using your mouse.</p>
<p><strong>6. Yahoo! UI Autosuggest Control</strong><br />
<img style="float: right; margin-left: 14px;" src="http://lh6.ggpht.com/_TqPdHmAEwTM/SZgZC1nqdII/AAAAAAAADzI/TDMmUx47H6w/as5.jpg" alt="" /><a href="http://developer.yahoo.com/yui/examples/autocomplete/ac_flickr_xml.html">Yahoo! UI Autosuggest Control</a> uses AutoComplete to find images by tag from the Flickr webservice. A simple PHP proxy is used to access the remote server via XHR. The generateRequest() method has been customized in order send additional required parameters to the Flickr application. The formatResult() method has been customized in order to display images in the results container, and the default CSS has been enhanced so the results container can scroll. Finally, a itemSelectEvent handler has been defined to collect selected images in a separate container.</p>
<p><strong>7. CAPXOUS.AutoComplete</strong><br />
<a href="http://capxous.com/">CAPXOUS.AutoComplete</a> is a standalone widget without dependencies, lightweight (only 4 kb) which provides auto suggest feature with an huge scrollable drop down list. It&#8217;s simple to customize and implement on your web pages with a lot of languages.</p>
<p><strong>8. jQuery Tag Suggestion</strong><br />
<img style="float: right; margin-left: 14px;" src="http://lh6.ggpht.com/_TqPdHmAEwTM/SZgfMpYrIUI/AAAAAAAADzQ/vnnaVuuQhzM/as6.png" alt="" /><a href="http://remysharp.com/2007/12/28/jquery-tag-suggestion/">jQuery Tag Suggestion</a> plugin simulates del.icio.us tag suggestion as-you-type feature (when you save a bookmark on del.icio.us). Tag suggestion helps you create a subset of tags that you commonly use for different types of links.</p>
<p><strong>9. Google Suggest Style Filter with the AutoComplete Control</strong><br />
<img style="float: right; margin-left: 14px;" src="http://lh5.ggpht.com/_TqPdHmAEwTM/SZgh4Nhk9RI/AAAAAAAADzg/Fp5Kq08pfeY/as7.png" alt="" /><a href="http://mattberseth.com/blog/2007/12/creating_a_google_suggest_styl.html">Matt Berseth&#8217;s AutoComplete</a> control provides smarter filtering capabilities for data tables which allow the user to select a filter column from a drop down list. Take a look here for the <a href="http://mattberseth2.com/datatable_with_autocomplete_filter/">live demo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ersinacar.com/the-best-ajax-auto-suggestion-complete_23.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
