<?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>Teguh Eko Budiarto &#187; User Interface</title>
	<atom:link href="http://teguheko.echodess.com/category/programming/user-interface/feed/" rel="self" type="application/rss+xml" />
	<link>http://teguheko.echodess.com</link>
	<description>Web Programming and Sharing Experience</description>
	<lastBuildDate>Sat, 21 Aug 2010 07:51:47 +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>Z-Index problem with IE</title>
		<link>http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/</link>
		<comments>http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/#comments</comments>
		<pubDate>Sat, 21 Aug 2010 07:44:56 +0000</pubDate>
		<dc:creator>Teguh Eko Budiarto</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[User Interface]]></category>

		<guid isPermaLink="false">http://teguheko.echodess.com/?p=107</guid>
		<description><![CDATA[I spent couple of hours to find the solution of this bug, so I just post it here hope it can help somebody else. Btw, the IE version was 8 in windows XP environment.
The problem is introduced here http://www.quirksmode.org/bugreports/archives/2006/01/Explorer_z_index_bug.html
and here
http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html
Some of the solutions proposed are here:
 http://brenelz.com/blog/squish-the-internet-explorer-z-index-bug/
http://systembash.com/content/css-z-index-internet-explorer/
(try to open those pages in IE and FF [...]]]></description>
			<content:encoded><![CDATA[<p>I spent couple of hours to find the solution of this bug, so I just post it here hope it can help somebody else. Btw, the IE version was 8 in windows XP environment.</p>
<p>The problem is introduced here <a href="http://www.quirksmode.org/bugreports/archives/2006/01/Explorer_z_index_bug.html">http://www.quirksmode.org/bugreports/archives/2006/01/Explorer_z_index_bug.html</a></p>
<p>and here<br />
<a href="http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html">http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html</a></p>
<p>Some of the solutions proposed are here:<br />
<a href="http://brenelz.com/blog/squish-the-internet-explorer-z-index-bug/"> http://brenelz.com/blog/squish-the-internet-explorer-z-index-bug/</a><br />
<a href="http://systembash.com/content/css-z-index-internet-explorer/">http://systembash.com/content/css-z-index-internet-explorer/</a></p>
<p>(try to open those pages in IE and FF / Chrome to compare)</p>
<p>What really worked for me was the combination of two solution above, set position:relative to the containing divs and give each containing div higher value of z-index of the contained one.</p>
<p>Case example :</p>
<pre class="brush: html">
&lt;div style="z-index:5; position:relative"&gt;
    &lt;div style="z-index:4"&gt;
        &lt;div style="z-index:3"&gt;
        &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;div style="z-index:2; position:relative"&gt;
    &lt;div style="z-index:1"&gt;
    &lt;/div&gt;
&lt;/div&gt;
</pre>
<p>For the code above, we should be able to see the div with z-index 3 on top of the divs positioned after it (z-index 2 and 1).</p>
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old"><ul class="socials"><li class="sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/&amp;title=Z-Index+problem+with+IE" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li><li class="sexy-blinklist"><a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/&amp;Title=Z-Index+problem+with+IE" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a></li><li class="sexy-delicious"><a href="http://del.icio.us/post?url=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/&amp;title=Z-Index+problem+with+IE" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/&amp;title=Z-Index+problem+with+IE" rel="nofollow" class="external" title="Digg this!">Digg this!</a></li><li class="sexy-diigo"><a href="http://www.diigo.com/post?url=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/&amp;title=Z-Index+problem+with+IE&amp;desc=I%20spent%20couple%20of%20hours%20to%20find%20the%20solution%20of%20this%20bug%2C%20so%20I%20just%20post%20it%20here%20hope%20it%20can%20help%20somebody%20else.%20Btw%2C%20the%20IE%20version%20was%208%20in%20windows%20XP%20environment.%0D%0A%0D%0AThe%20problem%20is%20introduced%20here%20http%3A%2F%2Fwww.quirksmode.org%2Fbugreports%2Farchives%2F2006%2F01%2FExplorer_z_index_bug.html%0D%0A%0D%0Aand%20here%0D%0Ahttp%3A%2F%2F" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/&amp;title=Z-Index+problem+with+IE" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li class="sexy-yahoobuzz"><a href="http://buzz.yahoo.com/submit/?submitUrl=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/&amp;submitHeadline=Z-Index+problem+with+IE&amp;submitSummary=I%20spent%20couple%20of%20hours%20to%20find%20the%20solution%20of%20this%20bug%2C%20so%20I%20just%20post%20it%20here%20hope%20it%20can%20help%20somebody%20else.%20Btw%2C%20the%20IE%20version%20was%208%20in%20windows%20XP%20environment.%0D%0A%0D%0AThe%20problem%20is%20introduced%20here%20http%3A%2F%2Fwww.quirksmode.org%2Fbugreports%2Farchives%2F2006%2F01%2FExplorer_z_index_bug.html%0D%0A%0D%0Aand%20here%0D%0Ahttp%3A%2F%2F&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a></li><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/&amp;title=Z-Index+problem+with+IE" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-mixx"><a href="http://www.mixx.com/submit?page_url=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/&amp;title=Z-Index+problem+with+IE" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a></li><li class="sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/&amp;t=Z-Index+problem+with+IE" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a></li><li class="sexy-designfloat"><a href="http://www.designfloat.com/submit.php?url=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/&amp;title=Z-Index+problem+with+IE" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/&amp;t=Z-Index+problem+with+IE" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://twitter.com/home?status=Z-Index problem with IE+-+http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/+" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li class="sexy-comfeed"><a href="http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/&amp;title=Z-Index+problem+with+IE&amp;summary=I%20spent%20couple%20of%20hours%20to%20find%20the%20solution%20of%20this%20bug%2C%20so%20I%20just%20post%20it%20here%20hope%20it%20can%20help%20somebody%20else.%20Btw%2C%20the%20IE%20version%20was%208%20in%20windows%20XP%20environment.%0D%0A%0D%0AThe%20problem%20is%20introduced%20here%20http%3A%2F%2Fwww.quirksmode.org%2Fbugreports%2Farchives%2F2006%2F01%2FExplorer_z_index_bug.html%0D%0A%0D%0Aand%20here%0D%0Ahttp%3A%2F%2F&amp;source=Teguh Eko Budiarto" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/&amp;h=Z-Index+problem+with+IE" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a></li><li class="sexy-devmarks"><a href="http://devmarks.com/index.php?posttext=I%20spent%20couple%20of%20hours%20to%20find%20the%20solution%20of%20this%20bug%2C%20so%20I%20just%20post%20it%20here%20hope%20it%20can%20help%20somebody%20else.%20Btw%2C%20the%20IE%20version%20was%208%20in%20windows%20XP%20environment.%0D%0A%0D%0AThe%20problem%20is%20introduced%20here%20http%3A%2F%2Fwww.quirksmode.org%2Fbugreports%2Farchives%2F2006%2F01%2FExplorer_z_index_bug.html%0D%0A%0D%0Aand%20here%0D%0Ahttp%3A%2F%2F&amp;posturl=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/&amp;posttitle=Z-Index+problem+with+IE" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a></li><li class="sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/&amp;title=Z-Index+problem+with+IE" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a></li><li class="sexy-misterwong"><a href="http://www.mister-wong.com/addurl/?bm_url=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/&amp;bm_description=Z-Index+problem+with+IE&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a></li><li class="sexy-izeby"><a href="http://izeby.com/submit.php?url=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a></li><li class="sexy-tipd"><a href="http://tipd.com/submit.php?url=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a></li><li class="sexy-pfbuzz"><a href="http://pfbuzz.com/submit?url=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/&amp;title=Z-Index+problem+with+IE" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a></li><li class="sexy-friendfeed"><a href="http://www.friendfeed.com/share?title=Z-Index+problem+with+IE&amp;link=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a></li><li class="sexy-blogmarks"><a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/&amp;title=Z-Index+problem+with+IE" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a></li><li class="sexy-twittley"><a href="http://twittley.com/submit/?title=Z-Index+problem+with+IE&amp;url=http%3A%2F%2Fteguheko.echodess.com%2F2010%2F08%2Fz-index-problem-with-ie%2F&amp;desc=I%20spent%20couple%20of%20hours%20to%20find%20the%20solution%20of%20this%20bug%2C%20so%20I%20just%20post%20it%20here%20hope%20it%20can%20help%20somebody%20else.%20Btw%2C%20the%20IE%20version%20was%208%20in%20windows%20XP%20environment.%0D%0A%0D%0AThe%20problem%20is%20introduced%20here%20http%3A%2F%2Fwww.quirksmode.org%2Fbugreports%2Farchives%2F2006%2F01%2FExplorer_z_index_bug.html%0D%0A%0D%0Aand%20here%0D%0Ahttp%3A%2F%2F&amp;pcat=Technology&amp;tags=default" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a></li><li class="sexy-fwisp"><a href="http://fwisp.com/submit?url=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a></li><li class="sexy-designmoo"><a href="http://designmoo.com/submit?url=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/&amp;title=Z-Index+problem+with+IE&amp;body=I%20spent%20couple%20of%20hours%20to%20find%20the%20solution%20of%20this%20bug%2C%20so%20I%20just%20post%20it%20here%20hope%20it%20can%20help%20somebody%20else.%20Btw%2C%20the%20IE%20version%20was%208%20in%20windows%20XP%20environment.%0D%0A%0D%0AThe%20problem%20is%20introduced%20here%20http%3A%2F%2Fwww.quirksmode.org%2Fbugreports%2Farchives%2F2006%2F01%2FExplorer_z_index_bug.html%0D%0A%0D%0Aand%20here%0D%0Ahttp%3A%2F%2F" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a></li><li class="sexy-bobrdobr"><a href="http://bobrdobr.ru/addext.html?url=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/&amp;title=Z-Index+problem+with+IE" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a></li><li class="sexy-yandex"><a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/&amp;lname=Z-Index+problem+with+IE" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a></li><li class="sexy-memoryru"><a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/&amp;u_data[name]=Z-Index+problem+with+IE" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a></li><li class="sexy-100zakladok"><a href="http://www.100zakladok.ru/save/?bmurl=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/&amp;bmtitle=Z-Index+problem+with+IE" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a></li><li class="sexy-moemesto"><a href="http://moemesto.ru/post.php?url=http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/&amp;title=Z-Index+problem+with+IE" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a></li></ul><div style="clear:both;"></div></div>]]></content:encoded>
			<wfw:commentRss>http://teguheko.echodess.com/2010/08/z-index-problem-with-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JQuery AutoComplete Search per Word</title>
		<link>http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/</link>
		<comments>http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 08:42:17 +0000</pubDate>
		<dc:creator>Teguh Eko Budiarto</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[User Interface]]></category>

		<guid isPermaLink="false">http://teguheko.echodess.com/?p=35</guid>
		<description><![CDATA[I was using JQuery autocomplete from Jörn Zaefferer to finish a small project for Computer Telephony &#8211; IPX PBX user interface. I think this is an awesome plugin ad it is suited very well for my project. 
For the project, I need the autocomplete to be able to search all data containing words which begins [...]]]></description>
			<content:encoded><![CDATA[<p>I was using JQuery autocomplete from <a href="http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/">Jörn Zaefferer</a> to finish a small project for Computer Telephony &#8211; IPX PBX user interface. I think this is an awesome plugin ad it is suited very well for my project. </p>
<p>For the project, I need the autocomplete to be able to search all data containing words which begins with the text being typed in the input textbox. However, after browsing through the documentation and try the possible combination of <strong>matchContains</strong> and <strong>matchSubset</strong> options of the plugin, it seems that it was not able to do what I want it to do. So, I decided to debug the javascript and go into the code to modify the search algorithm. </p>
<p>When I look into the code, I found this part of code:</p>
<pre class="brush: javascript">
function matchSubset(s, sub) {
		if (!options.matchCase)
			s = s.toLowerCase();
		var i = s.indexOf(sub);
		if (options.matchContains == "word"){
			i = s.toLowerCase().search("\\b" + sub.toLowerCase());
		}
		if (i == -1) return false;
		return i == 0 || options.matchContains;
	};
</pre>
<p>In the fifth line of the function, there is a value check for <strong>matchContains</strong> option which implies that it received &#8220;word&#8221; value besides boolean true or false. The code uses the javascript search function with regex using <strong>\b</strong> tag which means word boundary. This means that it already have the functionality to search for subset contained in each word of the search data.<br />
I immediately changed my code to try to use the option by adding this line:</p>
<p><code>matchContains:"word"</code></p>
<p>So, the whole code to activate the autocomplete textbox is as below:</p>
<pre class="brush: javascript">
 $("#searchInput").autocomplete(json.Data, {
                    cacheLength:1,
                    delay:0,
                    formatItem: function(row)
                    {
                        var sShow = row.Name + " - (" + row.TypePhone + ") " + row.Phone;
                        return sShow;
                    },
                    matchContains:"word",
                    matchSubset:true,
                    max:100,
                    minChars:1,
                    width:285,
                    selectFirst:true,
                    scrollHeight:"100px"
                });
</pre>
<p>After that, I try to find in the author&#8217;s website and <a href="http://docs.jquery.com/Plugins/Autocomplete">JQuery documentation </a>where in the world that option is being documented. At last I found it in the <a href="http://jquery.bassistance.de/autocomplete/changelog.txt">change log</a> for the latest version 1.1 (per this post date). It should be also written in the JQuery plugin documentation, since it is a very useful feature, at least for me at the time <img src='http://teguheko.echodess.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . I hope the author would update the documentation accordingly soon.</p>
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old"><ul class="socials"><li class="sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/&amp;title=JQuery+AutoComplete+Search+per+Word" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li><li class="sexy-blinklist"><a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/&amp;Title=JQuery+AutoComplete+Search+per+Word" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a></li><li class="sexy-delicious"><a href="http://del.icio.us/post?url=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/&amp;title=JQuery+AutoComplete+Search+per+Word" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/&amp;title=JQuery+AutoComplete+Search+per+Word" rel="nofollow" class="external" title="Digg this!">Digg this!</a></li><li class="sexy-diigo"><a href="http://www.diigo.com/post?url=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/&amp;title=JQuery+AutoComplete+Search+per+Word&amp;desc=I%20was%20using%20JQuery%20autocomplete%20from%20J%C3%B6rn%20Zaefferer%20to%20finish%20a%20small%20project%20for%20Computer%20Telephony%20-%20IPX%20PBX%20user%20interface.%20I%20think%20this%20is%20an%20awesome%20plugin%20ad%20it%20is%20suited%20very%20well%20for%20my%20project.%20%0D%0A%0D%0AFor%20the%20project%2C%20I%20need%20the%20autocomplete%20to%20be%20able%20to%20search%20all%20data%20containing%20words%20whic" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/&amp;title=JQuery+AutoComplete+Search+per+Word" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li class="sexy-yahoobuzz"><a href="http://buzz.yahoo.com/submit/?submitUrl=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/&amp;submitHeadline=JQuery+AutoComplete+Search+per+Word&amp;submitSummary=I%20was%20using%20JQuery%20autocomplete%20from%20J%C3%B6rn%20Zaefferer%20to%20finish%20a%20small%20project%20for%20Computer%20Telephony%20-%20IPX%20PBX%20user%20interface.%20I%20think%20this%20is%20an%20awesome%20plugin%20ad%20it%20is%20suited%20very%20well%20for%20my%20project.%20%0D%0A%0D%0AFor%20the%20project%2C%20I%20need%20the%20autocomplete%20to%20be%20able%20to%20search%20all%20data%20containing%20words%20whic&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a></li><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/&amp;title=JQuery+AutoComplete+Search+per+Word" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-mixx"><a href="http://www.mixx.com/submit?page_url=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/&amp;title=JQuery+AutoComplete+Search+per+Word" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a></li><li class="sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/&amp;t=JQuery+AutoComplete+Search+per+Word" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a></li><li class="sexy-designfloat"><a href="http://www.designfloat.com/submit.php?url=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/&amp;title=JQuery+AutoComplete+Search+per+Word" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/&amp;t=JQuery+AutoComplete+Search+per+Word" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://twitter.com/home?status=JQuery AutoComplete Search per Word+-+http://b2l.me/e35+" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li class="sexy-comfeed"><a href="http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/&amp;title=JQuery+AutoComplete+Search+per+Word&amp;summary=I%20was%20using%20JQuery%20autocomplete%20from%20J%C3%B6rn%20Zaefferer%20to%20finish%20a%20small%20project%20for%20Computer%20Telephony%20-%20IPX%20PBX%20user%20interface.%20I%20think%20this%20is%20an%20awesome%20plugin%20ad%20it%20is%20suited%20very%20well%20for%20my%20project.%20%0D%0A%0D%0AFor%20the%20project%2C%20I%20need%20the%20autocomplete%20to%20be%20able%20to%20search%20all%20data%20containing%20words%20whic&amp;source=Teguh Eko Budiarto" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/&amp;h=JQuery+AutoComplete+Search+per+Word" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a></li><li class="sexy-devmarks"><a href="http://devmarks.com/index.php?posttext=I%20was%20using%20JQuery%20autocomplete%20from%20J%C3%B6rn%20Zaefferer%20to%20finish%20a%20small%20project%20for%20Computer%20Telephony%20-%20IPX%20PBX%20user%20interface.%20I%20think%20this%20is%20an%20awesome%20plugin%20ad%20it%20is%20suited%20very%20well%20for%20my%20project.%20%0D%0A%0D%0AFor%20the%20project%2C%20I%20need%20the%20autocomplete%20to%20be%20able%20to%20search%20all%20data%20containing%20words%20whic&amp;posturl=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/&amp;posttitle=JQuery+AutoComplete+Search+per+Word" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a></li><li class="sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/&amp;title=JQuery+AutoComplete+Search+per+Word" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a></li><li class="sexy-misterwong"><a href="http://www.mister-wong.com/addurl/?bm_url=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/&amp;bm_description=JQuery+AutoComplete+Search+per+Word&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a></li><li class="sexy-izeby"><a href="http://izeby.com/submit.php?url=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a></li><li class="sexy-tipd"><a href="http://tipd.com/submit.php?url=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a></li><li class="sexy-pfbuzz"><a href="http://pfbuzz.com/submit?url=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/&amp;title=JQuery+AutoComplete+Search+per+Word" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a></li><li class="sexy-friendfeed"><a href="http://www.friendfeed.com/share?title=JQuery+AutoComplete+Search+per+Word&amp;link=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a></li><li class="sexy-blogmarks"><a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/&amp;title=JQuery+AutoComplete+Search+per+Word" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a></li><li class="sexy-twittley"><a href="http://twittley.com/submit/?title=JQuery+AutoComplete+Search+per+Word&amp;url=http%3A%2F%2Fteguheko.echodess.com%2F2009%2F09%2Fjquery-autocomplete-search-per-word%2F&amp;desc=I%20was%20using%20JQuery%20autocomplete%20from%20J%C3%B6rn%20Zaefferer%20to%20finish%20a%20small%20project%20for%20Computer%20Telephony%20-%20IPX%20PBX%20user%20interface.%20I%20think%20this%20is%20an%20awesome%20plugin%20ad%20it%20is%20suited%20very%20well%20for%20my%20project.%20%0D%0A%0D%0AFor%20the%20project%2C%20I%20need%20the%20autocomplete%20to%20be%20able%20to%20search%20all%20data%20containing%20words%20whic&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a></li><li class="sexy-fwisp"><a href="http://fwisp.com/submit?url=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a></li><li class="sexy-designmoo"><a href="http://designmoo.com/submit?url=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/&amp;title=JQuery+AutoComplete+Search+per+Word&amp;body=I%20was%20using%20JQuery%20autocomplete%20from%20J%C3%B6rn%20Zaefferer%20to%20finish%20a%20small%20project%20for%20Computer%20Telephony%20-%20IPX%20PBX%20user%20interface.%20I%20think%20this%20is%20an%20awesome%20plugin%20ad%20it%20is%20suited%20very%20well%20for%20my%20project.%20%0D%0A%0D%0AFor%20the%20project%2C%20I%20need%20the%20autocomplete%20to%20be%20able%20to%20search%20all%20data%20containing%20words%20whic" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a></li><li class="sexy-bobrdobr"><a href="http://bobrdobr.ru/addext.html?url=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/&amp;title=JQuery+AutoComplete+Search+per+Word" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a></li><li class="sexy-yandex"><a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/&amp;lname=JQuery+AutoComplete+Search+per+Word" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a></li><li class="sexy-memoryru"><a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/&amp;u_data[name]=JQuery+AutoComplete+Search+per+Word" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a></li><li class="sexy-100zakladok"><a href="http://www.100zakladok.ru/save/?bmurl=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/&amp;bmtitle=JQuery+AutoComplete+Search+per+Word" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a></li><li class="sexy-moemesto"><a href="http://moemesto.ru/post.php?url=http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/&amp;title=JQuery+AutoComplete+Search+per+Word" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a></li></ul><div style="clear:both;"></div></div>]]></content:encoded>
			<wfw:commentRss>http://teguheko.echodess.com/2009/09/jquery-autocomplete-search-per-word/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
