<?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>Emposha &#187; Jquery</title>
	<atom:link href="http://www.emposha.com/category/javascript/jquery/feed" rel="self" type="application/rss+xml" />
	<link>http://www.emposha.com</link>
	<description>Just another stupid wordpress blog ;)</description>
	<lastBuildDate>Tue, 25 May 2010 06:38:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Jquery IE crash plugin</title>
		<link>http://www.emposha.com/javascript/jquery-ie-crash-plugin.html</link>
		<comments>http://www.emposha.com/javascript/jquery-ie-crash-plugin.html#comments</comments>
		<pubDate>Thu, 01 Apr 2010 12:23:00 +0000</pubDate>
		<dc:creator>emposha</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Jquery]]></category>

		<guid isPermaLink="false">http://www.emposha.com/?p=391</guid>
		<description><![CDATA[A jQuery plugin for crashing IE6. That'll teach those motherf!%@*#s to upgrade their s#*t.]]></description>
			<content:encoded><![CDATA[<p>A jQuery plugin for crashing IE6. That&#8217;ll teach those motherf!%@*#s to upgrade their s#*t.</p>
<p>more info: <a href="http://plugins.jquery.com/project/crash">http://plugins.jquery.com/project/crash</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.emposha.com/javascript/jquery-ie-crash-plugin.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FCBKcomplete v 2.7.4</title>
		<link>http://www.emposha.com/javascript/fcbkcomplete.html</link>
		<comments>http://www.emposha.com/javascript/fcbkcomplete.html#comments</comments>
		<pubDate>Tue, 23 Feb 2010 15:39:57 +0000</pubDate>
		<dc:creator>emposha</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[autocomplete]]></category>
		<category><![CDATA[Fancy facebook-like input]]></category>
		<category><![CDATA[multiselect]]></category>

		<guid isPermaLink="false">http://www.emposha.com/?p=202</guid>
		<description><![CDATA[Fancy facebook-like dynamic inputs with auto complete &#038; pre added values. If you have any comments or requests, please post them and I will try to include all the requested features in the upcoming release.]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Fancy facebook-like dynamic inputs with auto complete &amp; pre added values. If you have any comments or requests, please post them and I will try to include all the requested features in the upcoming release.</p>
<p><strong>Download</strong><strong>:</strong> <a href="http://github.com/emposha/FCBKcomplete/archives/master" target="_blank">Download FCBKcomplete</a></p>
<p><strong>Demo</strong><strong>:</strong> <a href="http://www.emposha.com/demo/fcbkcomplete_2/" target="_blank">Demo FCBKcomplete</a></p>
<p><strong>GitHub: <span style="font-weight: normal;"><a href="http://github.com/emposha/FCBKcomplete" target="_blank">http://github.com/emposha/FCBKcomplete</a></span></strong></p>
<p style="text-align: center;"><span style="color: #ff0000;"><strong>Please use github for bug report</strong></span></p>
<p><strong>Usage:</strong></p>
<blockquote><p><code><span style="color: black;">$(<span style="color: #a31515;">"element"</span>).fcbkcomplete({<br />
json_url: <span style="color: #a31515;">"fetched.txt"</span>,<br />
cache: <span style="color: #0000ff;">true</span>,<br />
filter_case: <span style="color: #0000ff;">true</span>,<br />
filter_hide: <span style="color: #0000ff;">true</span>,<br />
newel: <span style="color: #0000ff;">true</span><br />
});</span><br />
</code></p></blockquote>
<p>json_url                   - url to fetch json object<br />
cache                        - use cache<br />
height                       - maximum number of element shown before scroll will apear<br />
newel                        - show typed text like a element<br />
firstselected          - automaticly select first element from dropdown<br />
filter_case              - case sensitive filter<br />
filter_hide              - show/hide filtered items<br />
filter_selected      - filter selected items from list<br />
complete_text     - text for complete page<br />
maxshownitems - maximum numbers that will be shown at dropdown list (less better performance)<br />
maxitems              - maximum item that can be added to the list<br />
onselect                 - fire event on item select<br />
onremove             - fire event on item remove<br />
delay                     <span style="white-space: pre;"> <span style="white-space: normal;">-</span></span> delay between ajax request (bigger delay, lower server time request)</p>
<p><strong>Add item public method </strong>(how to use)<strong>:<br />
<span style="font-weight: normal;">$(&#8220;elem&#8221;).trigger(&#8220;addItem&#8221;,[{"title": "test", "value": "test"}]);</span></strong></p>
<p><strong>Updates:</strong></p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 527px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">- 2.6.1</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 527px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>fixed public method to use it $(&#8220;elem&#8221;).trigger(&#8220;addItem&#8221;,[{"title": "test", "value": "test"}]);</div>
<p>- 2.7.4<br />
* standart event change call added on addItem, removeItem<br />
* preSet also check if item have &#8220;selected&#8221; attribute<br />
* addItem minor fix</p>
<p>- 2.7.3<br />
* event call fixed thanks to William Parry &lt;williamparry!at!gmail.com&gt;</p>
<p>- 2.7.2<br />
* some minor bug fixed<br />
* minified version recompacted due some problems</p>
<p>- 2.7.1<br />
* bug fixed<br />
* ajax delay added thanks to http://github.com/dolorian</p>
<p>- 2.7<br />
* jquery 1.4 compability<br />
* item lock possability added by adding locked class to preadded option &lt;option value=&#8221;value&#8221; class=&#8221;selected locked&#8221;&gt;text&lt;/option&gt;<br />
* maximum item that can be added</p>
<p>- 2.6.1<br />
* fixed public method to use it $(&#8220;elem&#8221;).trigger(&#8220;addItem&#8221;,[{"title": "test", "value": "test"}]);</p>
<p>- 2.6  ie6/7 support fix added<br />
* added new public method addItem due request<br />
* added new options &#8220;firstselected&#8221; that you can set true/false to select first element on dropdown list<br />
* autoexpand input element added<br />
* removeItem bug fixed<br />
* and many more bug fixed</p>
<p>- 2.5 	removed selected=&#8221;selected&#8221; attribute due ie bug<br />
* element search algorithm changed<br />
* better performance fix added<br />
* fixed many small bugs<br />
* onselect event added<br />
* onremove event added</p>
<p>- 2.02 fixed fist element selected bug<br />
* fixed defaultfilter error bug</p>
<p>- 2.01 fixed bugs &amp; added features<br />
* fixed filter bug for preadded items<br />
*  focus on the input after selecting tag<br />
*  the element removed pressing backspace when the element is selected<br />
*  input tag in the control has a border in IE7<br />
*  added iterate over each match and apply the plugin separately<br />
*  set focus on the input after selecting tag</p>
<p>- 2.00 new version of fcbkcomplete<br />
* replace regular &#8220;select&#8221; element with new fancy facebook like selector<br />
* multiple elements support</p>
]]></content:encoded>
			<wfw:commentRss>http://www.emposha.com/javascript/fcbkcomplete.html/feed</wfw:commentRss>
		<slash:comments>227</slash:comments>
		</item>
		<item>
		<title>jqVideoBox v 1.00</title>
		<link>http://www.emposha.com/javascript/jqvideobox-v-1-00.html</link>
		<comments>http://www.emposha.com/javascript/jqvideobox-v-1-00.html#comments</comments>
		<pubDate>Tue, 27 Oct 2009 14:20:58 +0000</pubDate>
		<dc:creator>emposha</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Google Video]]></category>
		<category><![CDATA[iFilm]]></category>
		<category><![CDATA[lightbox]]></category>
		<category><![CDATA[Metacafe]]></category>
		<category><![CDATA[videobox]]></category>
		<category><![CDATA[Youtube]]></category>

		<guid isPermaLink="false">http://www.emposha.com/?p=351</guid>
		<description><![CDATA[jqVideoBox is jquery port of   Videobox(mootools) lightbox for videos Youtube, Metacafe, Google Video, iFilm and custom flash.]]></description>
			<content:encoded><![CDATA[<p>jqVideoBox is jquery port of  <a href="http://videobox-lb.sourceforge.net/" target="_blank">Videobox</a> (mootools) lightbox for videos Youtube, Metacafe, Google Video, iFilm and custom flash.</p>
<p><strong>Download</strong><strong>:</strong> <a href="http://github.com/emposha/jqVideoBox/archives/master" target="_blank">Download jqVideoBox v 1.00</a></p>
<p><strong>Demo</strong><strong>:</strong> <a href="../demo/jqvideobox/" target="_blank">Demo jqVideoBox </a></p>
<p><strong>Github:</strong> <a href="http://github.com/emposha/jqVideoBox">http://github.com/emposha/jqVideoBox</a></p>
<p><strong>Usage:</strong></p>
<blockquote><p><code><span style="color: black;">$(<span style="color: #0000ff;">document</span>).ready(<br />
<span style="color: #0000ff;">function</span>()<br />
{<br />
$(<span style="color: #a31515;">".vidbox"</span>).jqvideobox();<br />
}<br />
);</span><br />
</code></p></blockquote>
<p><strong>Parameters list:</strong></p>
<p>initialWidth        &#8211; Initial width of the box<br />
initialHeight       &#8211; Initial height of the box<br />
defaultWidth        &#8211; Default width of the box<br />
defaultHeight       &#8211; Default height of the box<br />
animateCaption      &#8211; Enable/Disable caption animation<br />
defaultOverLayFade  &#8211; Default overlay fade value<br />
flvplayer             &#8211; Path to default flash player</p>
<p><strong>Updates:</strong></p>
<p>- 1.00 ported from mootools plugin videbox (http://videobox-lb.sourceforge.net/) to jquery</p>
]]></content:encoded>
			<wfw:commentRss>http://www.emposha.com/javascript/jqvideobox-v-1-00.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>FCBKcomplete v 1.09</title>
		<link>http://www.emposha.com/javascript/jquerymultiselect.html</link>
		<comments>http://www.emposha.com/javascript/jquerymultiselect.html#comments</comments>
		<pubDate>Wed, 25 Mar 2009 01:21:00 +0000</pubDate>
		<dc:creator>emposha</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Pro Counter]]></category>
		<category><![CDATA[autocomplete]]></category>
		<category><![CDATA[multiselect]]></category>

		<guid isPermaLink="false">http://www.emposha.com/?p=21</guid>
		<description><![CDATA[Fancy facebook-like dynamic inputs with auto complete &#038; pre added values. If you have any comments or requests, please post them and I will try to include all the requested features in the upcoming release.]]></description>
			<content:encoded><![CDATA[<p>Fancy facebook-like dynamic inputs with auto complete &amp; pre added values. If you have any comments or requests, please post them and I will try to include all the requested features in the upcoming release.</p>
<p style="text-align: center;"><img class="alignnone size-medium wp-image-24" title="16020802" src="http://www.emposha.com/wp-content/uploads/2008/09/16020802-300x92.jpg" alt="" width="300" height="92" /></p>
<h3 style="text-align: center;"><strong><span style="color: #ff0000;"><span style="text-decoration: underline;">New version of FCBKcomplete can be found </span></span></strong><a href="http://www.emposha.com/javascript/fcbkcomplete.html" target="_self"><span style="color: #ff0000;"><strong><span style="color: #ff0000;">here</span></strong></span></a></h3>
<p><strong>Download</strong><strong>:</strong> <a href="http://www.emposha.com/upload/fcbkcomplete1.09.zip" target="_blank">Download FCBKcomplete</a></p>
<p><strong>Demo</strong><strong>:</strong> <a href="http://www.emposha.com/demo/fcbkcomplete/" target="_blank">Demo FCBKcomplete</a></p>
<p><strong>Use:</strong></p>
<blockquote><p><code><span style="color: black;">&lt;script language=<span style="color: #a31515;">"JavaScript"</span>&gt;<br />
$(<span style="color: #0000ff;">document</span>).ready(<span style="color: #0000ff;">function</span>() {<br />
$.facebooklist(<span style="color: #a31515;">'#elem'</span>, <span style="color: #a31515;">'#list'</span>, <span style="color: #a31515;">'#complete'</span>,<span style="color: #a31515;"><span style="color: black;">{url:</span></span></span></code><code><span style="color: black;"><span style="color: #a31515;">'ajax-url'</span></span></code><code><span style="color: black;"><span style="color: #a31515;"><span style="color: black;">,cache:1}</span></span>, height, {userfilter:1,casesensetive:0});<br />
});<br />
&lt;/script&gt;</span></code></p>
<p><code> </code><code><span style="font-size: xx-small; color: gray;">* This source code was highlighted with <a href="http://virtser.net/blog/post/source-code-highlighter.aspx"><span style="font-size: xx-small; color: gray;">Source Code Highlighter</span></a>.</span></code></p></blockquote>
<p><strong><span style="font-weight: normal;">elem &#8211; input element id or object<br />
list &#8211; preadded elements<br />
complete &#8211; autocomplete div id or object<br />
ajax &#8211; object with two parametrs a) url to fetch json object b) use cache<br />
height &#8211; maximum number of element shown before scroll will apear<br />
filter &#8211; object with two parametrs a)case sensitive b) show/hide filtered items<br />
newel &#8211; show typed text like a element</span></strong></p>
<p><strong>Creditrs for CSS &amp; HTML structur</strong><strong>e:</strong> Guillermo (<a href="http://devthought.com" target="_blank">http://devthought.com</a>)</p>
<p style="text-align: center;"><strong> </strong></p>
<p><strong>Updates:</strong></p>
<p>- 1.09 IE crash fixed</p>
<p>- 1.08 some minor bug fixed</p>
<p>-1.07  case sensetive added<br />
applied filter to non ajax items<br />
filter algorithm changed<br />
cache for ajax request added<br />
up/down with auto scrolling<br />
minor code fixes</p>
<p>- 1.06 auto heigth fix<br />
event bind on main element for better user frendly experience<br />
filter for items<br />
up/down keys supported from now</p>
<p>- 1.05 bindEvents function fixed thanks to idgnarn</p>
<p>- Name changed to <strong>FCBKcomplete</strong></p>
<p>- 1.04 IE7 &lt;em&gt; tag replace fixed</p>
<p>- 1.03 IE7 &amp; IE6 crash fixed<br />
IE7 css fixed</p>
<p>- 1.02 json parsing fixed<br />
remove element fixed</p>
<p>- 1.01: some bugs fixed</p>
]]></content:encoded>
			<wfw:commentRss>http://www.emposha.com/javascript/jquerymultiselect.html/feed</wfw:commentRss>
		<slash:comments>105</slash:comments>
		</item>
		<item>
		<title>Strange Jquery 1.3 behavior</title>
		<link>http://www.emposha.com/javascript/strange-jquery-13-behavior.html</link>
		<comments>http://www.emposha.com/javascript/strange-jquery-13-behavior.html#comments</comments>
		<pubDate>Thu, 15 Jan 2009 17:16:33 +0000</pubDate>
		<dc:creator>emposha</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[jquery 1.3]]></category>

		<guid isPermaLink="false">http://www.emposha.com/?p=134</guid>
		<description><![CDATA[Today I worked with two elements with same ids but in different forms, and found strange jquery selector engine behavior. Actually I can undrestand that, because by w3c you cant place two elements with same ids on same page.]]></description>
			<content:encoded><![CDATA[<p>Today I worked with two elements with same ids but in different forms, and found strange jquery selector engine behavior. Actually I can undrestand that, because by w3c you cant place two elements with same ids on same page.</p>
<p><strong>Description</strong>: Two froms with element with same id in both of them, trying to use jquery selector to choose one of them like this $(&#8220;#formid #elemid&#8221;). Result will be null.</p>
<p><strong>Example</strong>:</p>
<p>HTML:</p>
<blockquote><p><code><span style="font-family: Courier New; color: black; font-size: x-small;"><span style="color: #0000ff;">&lt;</span><span style="color: #800000;">form</span> <span style="color: #ff0000;">id</span><span style="color: #0000ff;">="form1"</span> <span style="color: #ff0000;">method</span><span style="color: #0000ff;">="post"</span> <span style="color: #ff0000;">action</span><span style="color: #0000ff;">="/"</span><span style="color: #0000ff;">&gt;</span><br />
<span style="color: #0000ff;">&lt;</span><span style="color: #800000;">input</span> <span style="color: #ff0000;">type</span><span style="color: #0000ff;">="text"</span> <span style="color: #ff0000;">class</span><span style="color: #0000ff;">="inputtext"</span> <span style="color: #ff0000;">id</span><span style="color: #0000ff;">="text1"</span> <span style="color: #ff0000;">name</span><span style="color: #0000ff;">="text1"</span> <span style="color: #ff0000;">value</span><span style="color: #0000ff;">=""</span><span style="color: #0000ff;">/&gt;</span><br />
<span style="color: #0000ff;">&lt;</span><span style="color: #800000;">input</span> <span style="color: #ff0000;">type</span><span style="color: #0000ff;">="text"</span> <span style="color: #ff0000;">class</span><span style="color: #0000ff;">="inputtext"</span> <span style="color: #ff0000;">id</span><span style="color: #0000ff;">="text2"</span> <span style="color: #ff0000;">name</span><span style="color: #0000ff;">="text2"</span> <span style="color: #ff0000;">value</span><span style="color: #0000ff;">=""</span><span style="color: #0000ff;">/&gt;</span><br />
<span style="color: #0000ff;">&lt;</span><span style="color: #800000;">input</span> <span style="color: #ff0000;">type</span><span style="color: #0000ff;">="text"</span> <span style="color: #ff0000;">class</span><span style="color: #0000ff;">="button"</span> <span style="color: #ff0000;">id</span><span style="color: #0000ff;">="btn1"</span> <span style="color: #ff0000;">value</span><span style="color: #0000ff;">="press me"</span><span style="color: #0000ff;">/&gt;</span><br />
<span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">form</span><span style="color: #0000ff;">&gt;</span></span></code></p>
<p><span style="font-family: Courier New; color: black; font-size: x-small;"><span style="color: #0000ff;">&lt;</span><span style="color: #800000;">form</span> <span style="color: #ff0000;">id</span><span style="color: #0000ff;">=&#8221;form2&#8243;</span> <span style="color: #ff0000;">method</span><span style="color: #0000ff;">=&#8221;post&#8221;</span> <span style="color: #ff0000;">action</span><span style="color: #0000ff;">=&#8221;/&#8221;</span><span style="color: #0000ff;">&gt;</span><br />
<span style="color: #0000ff;">&lt;</span><span style="color: #800000;">input</span> <span style="color: #ff0000;">type</span><span style="color: #0000ff;">=&#8221;text&#8221;</span> <span style="color: #ff0000;">class</span><span style="color: #0000ff;">=&#8221;inputtext&#8221;</span> <span style="color: #ff0000;">id</span><span style="color: #0000ff;">=&#8221;text1&#8243;</span> <span style="color: #ff0000;">name</span><span style="color: #0000ff;">=&#8221;text1&#8243;</span> <span style="color: #ff0000;">value</span><span style="color: #0000ff;">=&#8221;"</span><span style="color: #0000ff;">/&gt;</span><br />
<span style="color: #0000ff;">&lt;</span><span style="color: #800000;">input</span> <span style="color: #ff0000;">type</span><span style="color: #0000ff;">=&#8221;text&#8221;</span> <span style="color: #ff0000;">class</span><span style="color: #0000ff;">=&#8221;inputtext&#8221;</span> <span style="color: #ff0000;">id</span><span style="color: #0000ff;">=&#8221;text2&#8243;</span> <span style="color: #ff0000;">name</span><span style="color: #0000ff;">=&#8221;text3&#8243;</span> <span style="color: #ff0000;">value</span><span style="color: #0000ff;">=&#8221;"</span><span style="color: #0000ff;">/&gt;</span><br />
<span style="color: #0000ff;">&lt;</span><span style="color: #800000;">input</span> <span style="color: #ff0000;">type</span><span style="color: #0000ff;">=&#8221;text&#8221;</span> <span style="color: #ff0000;">class</span><span style="color: #0000ff;">=&#8221;button&#8221;</span> <span style="color: #ff0000;">id</span><span style="color: #0000ff;">=&#8221;btn2&#8243;</span> <span style="color: #ff0000;">value</span><span style="color: #0000ff;">=&#8221;press me2&#8243;</span><span style="color: #0000ff;">/&gt;</span><br />
<span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">form</span><span style="color: #0000ff;">&gt;</span><br />
</span><br />
<span style="color: gray; font-size: xx-small;">* This source code was highlighted with <a href="http://virtser.net/blog/post/source-code-highlighter.aspx"><span style="color: gray; font-size: xx-small;">Source Code Highlighter</span></a>.</span></p></blockquote>
<p>Javascript:</p>
<blockquote><p><code><span style="font-family: Courier New; color: black; font-size: x-small;">$(<span style="color: #a31515;">'#btn1'</span>).click(<span style="color: #0000ff;">function</span>() {<br />
<span style="color: #0000ff;">if</span> (!$(<span style="color: #a31515;">'#form1 #text1'</span>).val()) {<br />
$(<span style="color: #a31515;">'#form1 #text1'</span>).css(<span style="color: #a31515;">'border'</span>,<span style="color: #a31515;">'1px solid red'</span>);<br />
}<br />
<span style="color: #0000ff;">if</span> (!$(<span style="color: #a31515;">'#form1 #text2'</span>).val()) {<br />
$(<span style="color: #a31515;">'#form1 #text2'</span>).css(<span style="color: #a31515;">'border'</span>,<span style="color: #a31515;">'1px solid red'</span>);<br />
}<br />
});</span></code></p>
<p><span style="font-family: Courier New; color: black; font-size: x-small;">$(<span style="color: #a31515;">&#8216;#btn2&#8242;</span>).click(<span style="color: #0000ff;">function</span>() {<br />
<span style="color: #0000ff;">if</span> (!$(<span style="color: #a31515;">&#8216;#form2 #text1&#8242;</span>).val()) {<br />
$(<span style="color: #a31515;">&#8216;#form2 #text1&#8242;</span>).css(<span style="color: #a31515;">&#8216;border&#8217;</span>,<span style="color: #a31515;">&#8216;1px solid red&#8217;</span>);<br />
}<br />
<span style="color: #0000ff;">if</span> (!$(<span style="color: #a31515;">&#8216;#form2 #text2&#8242;</span>).val()) {<br />
$(<span style="color: #a31515;">&#8216;#form2 #text4&#8242;</span>).css(<span style="color: #a31515;">&#8216;border&#8217;</span>,<span style="color: #a31515;">&#8216;1px solid red&#8217;</span>);<br />
}<br />
});</span></p>
<p><span style="color: gray; font-size: xx-small;">* This source code was highlighted with <a href="http://virtser.net/blog/post/source-code-highlighter.aspx"><span style="color: gray; font-size: xx-small;">Source Code Highlighter</span></a>.</span></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.emposha.com/javascript/strange-jquery-13-behavior.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>fcbkListSelection v 1.1 &#8211; like facebook friends selector</title>
		<link>http://www.emposha.com/javascript/fcbklistselection-like-facebook-friends-selector.html</link>
		<comments>http://www.emposha.com/javascript/fcbklistselection-like-facebook-friends-selector.html#comments</comments>
		<pubDate>Wed, 19 Nov 2008 20:12:48 +0000</pubDate>
		<dc:creator>emposha</dc:creator>
				<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[fancy]]></category>
		<category><![CDATA[multiselect]]></category>

		<guid isPermaLink="false">http://www.emposha.com/?p=109</guid>
		<description><![CDATA[fcbkListSelection  &#8211; fancy item selector (like facebook friends selector) with wide range of options.

If you have any comments or requests, please post them and I will try to include all the requested features in the upcoming release.
HowTo:
1) HTML stracture:
&#60;ul id="ulid"&#62;
&#60;li&#62;regular content &#60;input type="hidden" value="value" /&#62;&#60;/li&#62;
&#60;li&#62;preselected content &#60;input type="hidden" value="value" checked="checked" /&#62;&#60;/li&#62;
&#60;li&#62;regular content &#60;input type="hidden" [...]]]></description>
			<content:encoded><![CDATA[<p>fcbkListSelection  &#8211; fancy item selector (like facebook friends selector) with wide range of options.</p>
<p style="text-align: center;"><a href="http://www.emposha.com/wp-content/uploads/2008/11/fcbklist.png"><img class="alignnone size-medium wp-image-113" title="fcbklist" src="http://www.emposha.com/wp-content/uploads/2008/11/fcbklist-300x150.png" border="0" alt="" width="300" height="150" /></a></p>
<p>If you have any comments or requests, please post them and I will try to include all the requested features in the upcoming release.</p>
<p><strong>HowTo:</strong></p>
<p>1) HTML stracture:</p>
<blockquote><p><code><span style="color: black;"><span style="color: #0000ff;">&lt;</span><span style="color: #800000;">ul</span> <span style="color: #ff0000;">id</span><span style="color: #0000ff;">="ulid"</span><span style="color: #0000ff;">&gt;</span><br />
<span style="color: #0000ff;">&lt;</span><span style="color: #800000;">li</span><span style="color: #0000ff;">&gt;</span>regular content <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">input</span> <span style="color: #ff0000;">type</span><span style="color: #0000ff;">="hidden"</span> <span style="color: #ff0000;">value</span><span style="color: #0000ff;">="value"</span> <span style="color: #0000ff;">/&gt;&lt;/</span><span style="color: #800000;">li</span><span style="color: #0000ff;">&gt;</span><br />
<span style="color: #0000ff;">&lt;</span><span style="color: #800000;">li</span><span style="color: #0000ff;">&gt;</span>preselected content <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">input</span> <span style="color: #ff0000;">type</span><span style="color: #0000ff;">="hidden"</span> <span style="color: #ff0000;">value</span><span style="color: #0000ff;">="value"</span> <span style="color: #ff0000;">checked</span><span style="color: #0000ff;">="checked"</span> <span style="color: #0000ff;">/&gt;&lt;/</span><span style="color: #800000;">li</span><span style="color: #0000ff;">&gt;</span><br />
<span style="color: #0000ff;">&lt;</span><span style="color: #800000;">li</span><span style="color: #0000ff;">&gt;</span>regular content <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">input</span> <span style="color: #ff0000;">type</span><span style="color: #0000ff;">="hidden"</span> <span style="color: #ff0000;">value</span><span style="color: #0000ff;">="value"</span> <span style="color: #0000ff;">/&gt;&lt;/</span><span style="color: #800000;">li</span><span style="color: #0000ff;">&gt;</span><br />
<span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">ul</span><span style="color: #0000ff;">&gt;</span></span></code></p>
<p><span style="font-size: xx-small; color: gray;">* This source code was highlighted with <a href="http://virtser.net/blog/post/source-code-highlighter.aspx"><span style="font-size: xx-small; color: gray;">Source Code Highlighter</span></a>.</span></p></blockquote>
<p>2) Javascript:</p>
<blockquote><p><code><span style="color: black;"><span style="color: #0000ff;">&lt;</span><span style="color: #800000;">script</span> <span style="color: #ff0000;">type</span><span style="color: #0000ff;">="text/javascript"</span> <span style="color: #ff0000;">language</span><span style="color: #0000ff;">="JavaScript"</span><span style="color: #0000ff;">&gt;</span><br />
$(<span style="color: #0000ff;">document</span>).ready(<span style="color: #0000ff;">function</span>() {<br />
<span style="color: #008000;">//id(ul id),width,height(element height),row(elements in row) </span><br />
$.fcbkListSelection(id[ul id],width,height[element height],row[elements <span style="color: #0000ff;">in</span> row]);<br />
});<br />
<span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">script</span><span style="color: #0000ff;">&gt;</span></span></code></p>
<p><span style="font-size: xx-small; color: gray;">* This source code was highlighted with <a href="http://virtser.net/blog/post/source-code-highlighter.aspx"><span style="font-size: xx-small; color: gray;">Source Code Highlighter</span></a>.</span></p></blockquote>
<p><strong>Changelog:</strong><br />
- 1.1: added preselected items<br />
- 1.0: project started</p>
<p><strong>Download</strong><strong>:</strong> <a href="http://github.com/emposha/fcbkListSelection/archives/master" target="_blank">Download fcbkListSelection<br />
</a></p>
<p><strong>Demo</strong><strong>:</strong> <a href="http://www.emposha.com/demo/fcbklistselection/" target="_blank">Demo fcbkListSelection</a></p>
<p><strong>Github:</strong> <a href="http://github.com/emposha/fcbkListSelection">http://github.com/emposha/fcbkListSelection</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.emposha.com/javascript/fcbklistselection-like-facebook-friends-selector.html/feed</wfw:commentRss>
		<slash:comments>32</slash:comments>
		</item>
		<item>
		<title>Jquery IE6 png transperency fix</title>
		<link>http://www.emposha.com/javascript/jquery-ie6-png-transperency-fix.html</link>
		<comments>http://www.emposha.com/javascript/jquery-ie6-png-transperency-fix.html#comments</comments>
		<pubDate>Tue, 18 Nov 2008 09:30:15 +0000</pubDate>
		<dc:creator>emposha</dc:creator>
				<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Jquery]]></category>

		<guid isPermaLink="false">http://www.emposha.com/?p=102</guid>
		<description><![CDATA[Another Ie6 png fix that use Jquery selectors.  Just include Jquery 1.2.x and jqPngFix for automatic fix of all png images on page.
Performance test for 10 png images on page:

How to use:
&#60;script language="JavaScript"&#62;
$(document).ready(function() {
  if ($.browser.msie &#38;&#38; $.browser.version == '6.0') {
    jqPngFix();
  }
});
&#60;/script&#62; * This source code was highlighted with Source Code Highlighter.
Download script: jqPngFix.zip
]]></description>
			<content:encoded><![CDATA[<p>Another Ie6 png fix that use Jquery selectors.  Just include Jquery 1.2.x and jqPngFix for automatic fix of all png images on page.</p>
<p>Performance test for 10 png images on page:</p>
<p style="text-align: center;"><a href="http://www.emposha.com/wp-content/uploads/2008/11/jqery.jpg"><img class="size-medium wp-image-106 aligncenter" title="jqery" src="http://www.emposha.com/wp-content/uploads/2008/11/jqery-300x80.jpg" alt="" width="300" height="80" /></a></p>
<p><strong>How to use:</strong></p>
<blockquote><p><code><span style="color: black;">&lt;script language=<span style="color: #a31515;">"JavaScript"</span>&gt;<br />
$(<span style="color: #0000ff;">document</span>).ready(<span style="color: #0000ff;">function</span>() {<br />
  <span style="color: #0000ff;">if</span> ($.browser.msie &amp;&amp; $.browser.version == <span style="color: #a31515;">'6.0'</span>) {<br />
    jqPngFix();<br />
  }<br />
});<br />
&lt;/script&gt;</span> </code><code><span style="color: gray; font-size: xx-small;">* This source code was highlighted with <a href="http://virtser.net/blog/post/source-code-highlighter.aspx"><span style="color: gray; font-size: xx-small;">Source Code Highlighter</span></a>.</span></code></p></blockquote>
<p>Download script: <a href="http://www.emposha.com/wp-content/uploads/2008/11/jqpngfix.zip">jqPngFix.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.emposha.com/javascript/jquery-ie6-png-transperency-fix.html/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>
