<?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>BLOGS@DiGiTSS &#187; jQuery</title>
	<atom:link href="http://blogs.digitss.com/category/javascript/jquery-javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.digitss.com</link>
	<description>DiGiTSS Team&#039;s Programming experience with PHP, MySQL, Ajax, Javascript, jQuery, C# and Microsoft technologies</description>
	<lastBuildDate>Sat, 13 Aug 2011 06:26:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Implementing Quick Table Search using jQuery filter</title>
		<link>http://blogs.digitss.com/javascript/jquery-javascript/implementing-quick-table-search-using-jquery-filter/</link>
		<comments>http://blogs.digitss.com/javascript/jquery-javascript/implementing-quick-table-search-using-jquery-filter/#comments</comments>
		<pubDate>Sat, 13 Aug 2011 05:35:38 +0000</pubDate>
		<dc:creator>Dharmavirsinh Jhala</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://blogs.digitss.com/?p=619</guid>
		<description><![CDATA[Before sometime I had written a post on jQuery case-insensitive expression filter. Now today we will learn about how to put simple filter for our HTML table using jQuery and it's case-insensitive expression.]]></description>
			<content:encoded><![CDATA[<p>Before sometime I had written a post on <a href="http://blogs.digitss.com/javascript/jquery-javascript/jquery-case-insensitive-contains-expression/" target="_blank">jQuery case-insensitive expression</a> filter. Now today we will learn about how to put simple filter for our <em>HTML table</em> using <strong>jQuery</strong> and it's <em>case-insensitive expression</em>.</p>
<p>It's takes just few lines of Javascript / jQuery code to implement quick filter for an HTML table, here you go:</p>
<p><strong>The HTML</strong></p>
<pre>&nbsp;
&lt;label for=&quot;kwd_search&quot;&gt;Search:&lt;/label&gt;
&lt;input type=&quot;text&quot; id=&quot;kwd_search&quot; value=&quot;&quot;/&gt;
&lt;table id=&quot;my-table&quot; border=&quot;1&quot; style=&quot;border-collapse:collapse&quot;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Name&lt;/th&gt;
&lt;th&gt;Sports&lt;/th&gt;
&lt;th&gt;Country&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Sachin Tendulkar&lt;/td&gt;
&lt;td&gt;Cricket&lt;/td&gt;
&lt;td&gt;India&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Tiger Woods&lt;/td&gt;
&lt;td&gt;Golf&lt;/td&gt;
&lt;td&gt;USA&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Maria Sharapova&lt;/td&gt;
&lt;td&gt;Tennis&lt;/td&gt;
&lt;td&gt;Russia&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&nbsp;</pre>
<p><span id="more-619"></span><br />
<strong>The Javascript</strong></p>
<pre class="javascript">&nbsp;
<span style="color: #009900; font-style: italic;">// When document is ready: this gets fired before body onload &lt;img src='http://blogs.digitss.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /&gt;</span>
$<span style="color: #66cc66;">&#40;</span>document<span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">ready</span><span style="color: #66cc66;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
	<span style="color: #009900; font-style: italic;">// Write on keyup event of keyword input element</span>
	$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">&quot;#kwd_search&quot;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">keyup</span><span style="color: #66cc66;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
		<span style="color: #009900; font-style: italic;">// When value of the input is not blank</span>
		<span style="color: #000066; font-weight: bold;">if</span><span style="color: #66cc66;">&#40;</span> $<span style="color: #66cc66;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">val</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> != <span style="color: #3366CC;">&quot;&quot;</span><span style="color: #66cc66;">&#41;</span>
		<span style="color: #66cc66;">&#123;</span>
			<span style="color: #009900; font-style: italic;">// Show only matching TR, hide rest of them</span>
			$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">&quot;#my-table tbody&gt;tr&quot;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">hide</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
			$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">&quot;#my-table td:contains-ci('&quot;</span> + $<span style="color: #66cc66;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">val</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> + <span style="color: #3366CC;">&quot;')&quot;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">parent</span><span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">&quot;tr&quot;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">show</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
		<span style="color: #66cc66;">&#125;</span>
		<span style="color: #000066; font-weight: bold;">else</span>
		<span style="color: #66cc66;">&#123;</span>
			<span style="color: #009900; font-style: italic;">// When there is no input or clean again, show everything back</span>
			$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">&quot;#my-table tbody&gt;tr&quot;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">show</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
		<span style="color: #66cc66;">&#125;</span>
	<span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #009900; font-style: italic;">// jQuery expression for case-insensitive filter</span>
$.<span style="color: #006600;">extend</span><span style="color: #66cc66;">&#40;</span>$.<span style="color: #006600;">expr</span><span style="color: #66cc66;">&#91;</span><span style="color: #3366CC;">&quot;:&quot;</span><span style="color: #66cc66;">&#93;</span>,
<span style="color: #66cc66;">&#123;</span>
    <span style="color: #3366CC;">&quot;contains-ci&quot;</span>: <span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span>elem, i, match, array<span style="color: #66cc66;">&#41;</span>
	<span style="color: #66cc66;">&#123;</span>
		<span style="color: #000066; font-weight: bold;">return</span> <span style="color: #66cc66;">&#40;</span>elem.<span style="color: #006600;">textContent</span> || elem.<span style="color: #006600;">innerText</span> || $<span style="color: #66cc66;">&#40;</span>elem<span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">text</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> || <span style="color: #3366CC;">&quot;&quot;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">toLowerCase</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">indexOf</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#40;</span>match<span style="color: #66cc66;">&#91;</span><span style="color: #CC0000;">3</span><span style="color: #66cc66;">&#93;</span> || <span style="color: #3366CC;">&quot;&quot;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">toLowerCase</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span> &gt;= <span style="color: #CC0000;">0</span>;
	<span style="color: #66cc66;">&#125;</span>
<span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;
&nbsp;</pre>
<p>That's all it takes to put a quick filter using <strong>jQuery</strong>, see a <a title="jQuery quick filter for HTML Table" href="http://blogs.digitss.com/demo/jquery-table-search.html" target="_blank">live working demo here</a>.<strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://blogs.digitss.com/javascript/jquery-javascript/jquery-case-insensitive-contains-expression/" rel="bookmark" title="April 20, 2011">jQuery case-insensitive Contains Expression..!</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-javascript/jquery-fancy-custom-radio-and-checkbox/" rel="bookmark" title="April 8, 2010">jQuery Fancy Custom Radio-button and Checkbox</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-tablesorter-plugin-a-friend-in-need/" rel="bookmark" title="February 28, 2008">jQuery tablesorter plugin &#8211; a friend in need&#8230;</a></li>
<li><a href="http://blogs.digitss.com/technology/hacking-jquery-thickbox/" rel="bookmark" title="April 27, 2008">Hacking jQuery Thickbox..!</a></li>
<li><a href="http://blogs.digitss.com/programming/printing-data-table-vertically-why-and-how/" rel="bookmark" title="January 3, 2011">Printing data table vertically..! Why? and How?</a></li>
</ul>
<p><!-- Similar Posts took 23.647 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.digitss.com/javascript/jquery-javascript/implementing-quick-table-search-using-jquery-filter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery case-insensitive Contains Expression..!</title>
		<link>http://blogs.digitss.com/javascript/jquery-javascript/jquery-case-insensitive-contains-expression/</link>
		<comments>http://blogs.digitss.com/javascript/jquery-javascript/jquery-case-insensitive-contains-expression/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 18:35:10 +0000</pubDate>
		<dc:creator>Dharmavirsinh Jhala</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://blogs.digitss.com/?p=595</guid>
		<description><![CDATA[Most of the time to search through DOM and filter text we need a jQuery Expression/filter which gives us case-insensitive result. I believe it's required to have it as a part of jQuery base-library but anyway writing your own is very simple.

I have gone through some of other implementation before writing this but here this version is complete copy of jQuery library's "contains" filter except it is case-insensitive.]]></description>
			<content:encoded><![CDATA[<p>Most of the time to search through DOM and filter text we need a <strong>jQuery Expression/filter</strong> which gives us <strong>case-insensitive</strong> result. I believe it's required to have it as a part of <strong>jQuery</strong> base-library but anyway writing your own is very simple.</p>
<p>I have gone through some of other implementation before writing this but here this version is complete copy of jQuery library's "<strong>contains</strong>" filter except it is <strong>case-insensitive</strong>.</p>
<p>In below code when it's using <strong>$(elem).text()</strong> it's calling <strong>Sizzle.getText</strong> internally which is Utility function for retreiving the text value of an array of DOM nodes.</p>
<pre class="javascript">$.<span style="color: #006600;">extend</span><span style="color: #66cc66;">&#40;</span>$.<span style="color: #006600;">expr</span><span style="color: #66cc66;">&#91;</span><span style="color: #3366CC;">&quot;:&quot;</span><span style="color: #66cc66;">&#93;</span>,
<span style="color: #66cc66;">&#123;</span>
    <span style="color: #3366CC;">&quot;contains-ci&quot;</span>: <span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span>elem, i, match, array<span style="color: #66cc66;">&#41;</span>
	<span style="color: #66cc66;">&#123;</span>
		<span style="color: #000066; font-weight: bold;">return</span> <span style="color: #66cc66;">&#40;</span>elem.<span style="color: #006600;">textContent</span> || elem.<span style="color: #006600;">innerText</span> || $<span style="color: #66cc66;">&#40;</span>elem<span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">text</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> || <span style="color: #3366CC;">&quot;&quot;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">toLowerCase</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">indexOf</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#40;</span>match<span style="color: #66cc66;">&#91;</span><span style="color: #CC0000;">3</span><span style="color: #66cc66;">&#93;</span> || <span style="color: #3366CC;">&quot;&quot;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">toLowerCase</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span> &gt;= <span style="color: #CC0000;">0</span>;
	<span style="color: #66cc66;">&#125;</span>
<span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;</pre>
<p>Here are some other nice <strong>jQuery Selectors</strong> and <strong>Expressions</strong>:<span id="more-595"></span></p>
<ul>
<li><a title="JQuery Plugin: Extra selectors for JQuery" href="http://www.softwareunity.com/jquery/JQueryMoreSelectors/" target="_blank">JQuery Plugin: Extra selectors for JQuery</a></li>
<li><a title="jQuery Custom [:] Expression Test" href="http://www.malsup.com/jquery/expr/" target="_blank">jQuery Custom [:] Expressions</a></li>
</ul>
<p>I thought let me use <a title="Gist is a simple way to share snippets and pastes with others. All gists are git repositories, so they are automatically versioned, forkable and usable as a git repository." href="https://gist.github.com" target="_blank">gist</a> to host this tiny piece of code, may be just to make it easy to share and live as long as possible..! <img src='http://blogs.digitss.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<script src="https://gist.github.com/932198.js"> </script><strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://blogs.digitss.com/javascript/jquery-javascript/implementing-quick-table-search-using-jquery-filter/" rel="bookmark" title="August 13, 2011">Implementing Quick Table Search using jQuery filter</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-javascript/jquery-1-4-released-jquery-ui-has-yet-to-achieve-compatibility-with-it/" rel="bookmark" title="January 24, 2010">jQuery 1.4 Released &#8211; jQuery UI has yet to achieve compatibility with it&#8230;</a></li>
<li><a href="http://blogs.digitss.com/programming/printing-data-table-vertically-why-and-how/" rel="bookmark" title="January 3, 2011">Printing data table vertically..! Why? and How?</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-javascript/jquery-fancy-custom-radio-and-checkbox/" rel="bookmark" title="April 8, 2010">jQuery Fancy Custom Radio-button and Checkbox</a></li>
<li><a href="http://blogs.digitss.com/wordpress/wordpress-auto-login-for-friend-ally-websites/" rel="bookmark" title="February 2, 2010">WordPress Auto-Login for Friend/Ally Websites</a></li>
</ul>
<p><!-- Similar Posts took 171.213 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.digitss.com/javascript/jquery-javascript/jquery-case-insensitive-contains-expression/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery 1.5.2 and jQuery mobile alpha 4 released</title>
		<link>http://blogs.digitss.com/javascript/jquery-javascript/jquery-1-5-2-and-jquery-mobile-alpha-4-released/</link>
		<comments>http://blogs.digitss.com/javascript/jquery-javascript/jquery-1-5-2-and-jquery-mobile-alpha-4-released/#comments</comments>
		<pubDate>Sun, 03 Apr 2011 13:07:14 +0000</pubDate>
		<dc:creator>Dharmavirsinh Jhala</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Web Developer]]></category>

		<guid isPermaLink="false">http://blogs.digitss.com/?p=577</guid>
		<description><![CDATA[jQuery 1.5.2 is released (on April 2nd) as a bug-fix release of jQuery version 1.5.x, fixing about 18+ issues/bugs reported. Along with that couple of days back on 31st March 2011 jQuery Mobile's alpha-4 version has been released.

jQuery mobile project is making good and steady progress though from their road-map published earlier I was expecting production ready release of jQuery mobile in Jan 2011. As I have invested into jQuery mobile as a technology and tool for one of my project and it's obvious that I can not release that when framework itself is not mature for production.]]></description>
			<content:encoded><![CDATA[<div id="attachment_578" class="wp-caption alignleft" style="width: 132px"><a href="http://blogs.digitss.com/wp-content/uploads/2011/04/jQuery-mobile.png"><img class="size-full wp-image-578" title="jQuery mobile framework" src="http://blogs.digitss.com/wp-content/uploads/2011/04/jQuery-mobile.png" alt="jQuery mobile framework" width="122" height="239" /></a><p class="wp-caption-text">jQuery mobile framework</p></div>
<p><strong>jQuery</strong> 1.5.2 is released (on April 2nd) as a bug-fix release of <strong>jQuery</strong> version 1.5.x, fixing about 18+ issues/bugs reported. Along with that couple of days back on 31st March 2011 <strong>jQuery Mobile</strong>'s alpha-4 version has been released.</p>
<p><strong>jQuery mobile</strong> project is making good and steady progress though from their road-map published earlier I was expecting production ready release of <strong>jQuery mobile</strong> in Jan 2011. As I have invested into <strong>jQuery mobile</strong> as a technology and tool for one of my project and it's obvious that I can not release that when framework itself is not mature for production.</p>
<p>I am highly impressed with <strong>jQuery mobile framework</strong> project and I have chosen <strong>jQuery mobile</strong> over <a href="http://www.sencha.com/products/touch/"><strong>Sencha Touch</strong></a> after researching over it for sometime. One of the reason behind choosing <strong>jQuery mobile</strong> was number of devices they support. Look at the <a title="jQuery mobile - device support grid" href="http://jquerymobile.com/gbs/" target="_blank">device support grid here</a>.<span id="more-577"></span></p>
<p>I will be writing more on <em><strong>ExtJS Mobile (Sencha Touch) vs jQuery mobile</strong></em> in coming weeks, hopefully which will make developers take a smart decision depending upon the features they are looking for.</p>
<p>I would appreciate if you can share your experiences on above topic if you are about to take or have already taken decision in favor of one of them.</p>
<p><strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://blogs.digitss.com/javascript/jquery-javascript/jquery-1-4-released-jquery-ui-has-yet-to-achieve-compatibility-with-it/" rel="bookmark" title="January 24, 2010">jQuery 1.4 Released &#8211; jQuery UI has yet to achieve compatibility with it&#8230;</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-1-2-5-released/" rel="bookmark" title="May 21, 2008">jQuery 1.2.5 released</a></li>
<li><a href="http://blogs.digitss.com/php/when-php-frameworks-are-going-to-stop-php-4-support/" rel="bookmark" title="August 15, 2009">When PHP Frameworks are going to stop PHP 4 support?</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-1-3-2-is-out/" rel="bookmark" title="February 22, 2009">jQuery 1.3.2 is out</a></li>
<li><a href="http://blogs.digitss.com/php/symfony-11-rc1-released/" rel="bookmark" title="May 10, 2008">Symfony 1.1 RC1 Released</a></li>
</ul>
<p><!-- Similar Posts took 15.138 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.digitss.com/javascript/jquery-javascript/jquery-1-5-2-and-jquery-mobile-alpha-4-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Magnet Multi-Select List &#8211; DG Magnet Combo</title>
		<link>http://blogs.digitss.com/javascript/jquery-javascript/jquery-magnet-multi-select-list-dg-magnet-combo/</link>
		<comments>http://blogs.digitss.com/javascript/jquery-javascript/jquery-magnet-multi-select-list-dg-magnet-combo/#comments</comments>
		<pubDate>Mon, 24 Jan 2011 19:05:23 +0000</pubDate>
		<dc:creator>Dharmavirsinh Jhala</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blogs.digitss.com/?p=521</guid>
		<description><![CDATA[No Control+Click combo or list, just with your simple HTML and little jQuery magic (or magnet)
dg-magnet-combo is smart combo won't require you to provide 2 list/combo-box in user interface to have them choose options easily, Users don't need to keep CTL pressed while they select another option of the select-control. If you're wondering how just try this sample. ]]></description>
			<content:encoded><![CDATA[<div id="attachment_520" class="wp-caption alignleft" style="width: 237px"><a href="http://blogs.digitss.com/wp-content/uploads/2011/01/dg-magnet-combo.png"><img class="size-full wp-image-520" title="jQuery dg-magnet-combo (no CTL+Click Select/List with just one line)" src="http://blogs.digitss.com/wp-content/uploads/2011/01/dg-magnet-combo.png" alt="jQuery dg-magnet-combo (no CTL+Click Select/List with just one line)" width="227" height="113" /></a><p class="wp-caption-text">jQuery dg-magnet-combo (no CTL+Click Select)</p></div>
<p>Basically I wanted to write this plugin since long long time but could not get a while to hold and push my thoughts as a code to form this plugin. As the name suggests (which seems kind of difficult to understand the real purpose of this plugin) it does not deselect existing option when one selects another option in multi-selection list/combo-box.  How does this sound? Yes, w/o having your <em>control</em> key pressed. Basically I have been found of changing the default behavior of the html controls and with this new jQuery Magnet Multi-select List plugin, I will continue this trend. If you have already understood the meaning and purpose of this plugin you can move to plugin-usage without reading more boarding story about the plugin.</p>
<p>One would say that it's very easy you just have to hold the CTL key while selecting another option in combo-box but it's going to be very irritating when you have hundreds of options in your list and you have to select multiple out of them one of them is on top and the other one at the end of list, which makes it keeping that CTL key difficult and if one misses out CTL hold for a while and clicks he's gone. He has to start from all over again. To get rid of this problem many web-developers implement their lists/combo-box in ways where one has to click &gt; select and move options from left-to-right and those on the right-side are the ones which are being selected by users. But this plugin will make your life as a developer and users life much easier by not dropping down the selected option each time they select another. Basically this will help many users who are less-friendly with computers and web in general and this plugin development with jQuery came in mind just out of need for such a plugin who can do so and as per my knowledge so far we don't have such plugin available for any javascript library.</p>
<p>Learning from the past experiences, this plugin will support accessibility from the beginning. Yes, there is a keyboard support too.</p>
<p>To use <strong>DG Magnet Combo</strong> plugin just add following code in your javascript:</p>
<pre class="javascript">$<span style="color: #66cc66;">&#40;</span>document<span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">ready</span><span style="color: #66cc66;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
	$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">&quot;#my_list&quot;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">dgMagnetCombo</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;</pre>
<p><a title="jQuery DG-Magnet-Combo" href="http://digitss.com/jquery/dg-magnet-combo/dg-magnet-combo.html" target="_blank">See live demo here</a> or goto <a title="DG-Magnet-Combo github repository" href="https://github.com/dharmavir/DG-Magnet-Combo" target="_blank">github repository</a> to download or fork.</p>
<p><strong>Update:</strong> Plugin updated to 1.1 with following changes:<span id="more-521"></span></p>
<p>- Used inbuilt javascript/jQuery functions instead of self-made.<br />
- Made it work with CTL key pressed. So now it works normal when someone uses it with CTL key pressed and then takes back (in hybrid mode)</p>
<p><strong>Todo:</strong> Need to verify and test SHIFT key compatibility to make it work in natural mode when used with SHIFT key.</p>
<p><strong>Bugs:</strong> Please let me know if you encounter any problem/bug while using this plugin. Either post comment on this blog or create an issue on <a title="DG-Magnet-Combo on github repository" href="https://github.com/dharmavir/DG-Magnet-Combo/issues" target="_blank">github repository</a>.</p>
<p>PS: I should have done a Google search properly before writing this one, I saw <a href="http://growingtech.blogspot.com/2010/11/html-multi-select-maintain-multiple.html" target="_blank">Anup Gupta</a> has made his efforts in this direction and this plugin has some inspiration from his code for v1.1. But additionally this plugin has CTL key support which I could not see available somewhere else.<strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://blogs.digitss.com/javascript/jquery-tablesorter-plugin-a-friend-in-need/" rel="bookmark" title="February 28, 2008">jQuery tablesorter plugin &#8211; a friend in need&#8230;</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-javascript/jquery-1-4-released-jquery-ui-has-yet-to-achieve-compatibility-with-it/" rel="bookmark" title="January 24, 2010">jQuery 1.4 Released &#8211; jQuery UI has yet to achieve compatibility with it&#8230;</a></li>
<li><a href="http://blogs.digitss.com/javascript/radio-button-with-checkbox-behavior/" rel="bookmark" title="February 25, 2008">Radio-button with Checkbox behavior</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-javascript/jquery-ui-171-is-released/" rel="bookmark" title="April 12, 2009">jQuery UI &#8211; 1.7.1 is released..</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-1-2-5-released/" rel="bookmark" title="May 21, 2008">jQuery 1.2.5 released</a></li>
</ul>
<p><!-- Similar Posts took 7.976 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.digitss.com/javascript/jquery-javascript/jquery-magnet-multi-select-list-dg-magnet-combo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>jQuery Fancy Custom Radio-button and Checkbox</title>
		<link>http://blogs.digitss.com/javascript/jquery-javascript/jquery-fancy-custom-radio-and-checkbox/</link>
		<comments>http://blogs.digitss.com/javascript/jquery-javascript/jquery-fancy-custom-radio-and-checkbox/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 19:19:58 +0000</pubDate>
		<dc:creator>Dharmavirsinh Jhala</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Tools / Plugins / Extenstion]]></category>
		<category><![CDATA[Forms]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://blogs.digitss.com/?p=363</guid>
		<description><![CDATA[jQuery plugin which makes Radio-button and checkbox elements fancy in your html forms.]]></description>
			<content:encoded><![CDATA[<div id="attachment_368" class="wp-caption alignleft" style="width: 50px"><a href="http://blogs.digitss.com/wp-content/uploads/2010/04/fancy-radio-checkbox.png"><img class="size-full wp-image-368" title="Fancy Radio-button and Checkbox" src="http://blogs.digitss.com/wp-content/uploads/2010/04/fancy-radio-checkbox.png" alt="Fancy Radio-button and Checkbox" width="40" height="100" /></a><p class="wp-caption-text">Fancy Radio/ Checkbox</p></div>
<p>I have written a <strong>jQuery Plugin</strong> for <strong>Fancy Custom Checkbox</strong> and <strong>Radio-buttons</strong>. To make form elements visually more expressive. I required this for one of my project and later on I have rewritten it completely to make it more generic and easier for <strong>jQuery Lovers</strong>. I am great fan of jQuery and I am inspired by <a href="http://ryanfait.com/resources/custom-checkboxes-and-radio-buttons/" target="_blank">http://ryanfait.com/resources/custom-checkboxes-and-radio-buttons</a>/ to write this plugin.</p>
<p>It's fairly easy to use just like any other <strong>jQuery plugin</strong> you just have to write couple of lines of <strong>javascript </strong>code and add some <strong>CSS </strong>to your <strong>html</strong>.</p>
<p><strong>Javascript</strong> You need:</p>
<pre class="javascript">$<span style="color: #66cc66;">&#40;</span>document<span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">ready</span><span style="color: #66cc66;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
	$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">&quot;.radio&quot;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">dgStyle</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
	$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">&quot;.checkbox&quot;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">dgStyle</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;</pre>
<p><span id="more-363"></span><br />
<strong>CSS</strong> You need:</p>
<pre class="css"><span style="color: #6666ff;">.radio</span> <span style="color: #66cc66;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">height</span>: <span style="color: #933;">25px</span>;
	<span style="color: #000000; font-weight: bold;">width</span>: <span style="color: #933;">19px</span>;
	clear<span style="color: #3333ff;">:left</span>;
	float<span style="color: #3333ff;">:left</span>;
	<span style="color: #000000; font-weight: bold;">margin</span>: <span style="color: #933;">0</span> <span style="color: #933;">0</span> <span style="color: #933;">3px</span>;
	<span style="color: #000000; font-weight: bold;">padding</span>: <span style="color: #933;">0</span> <span style="color: #933;">0</span> <span style="color: #933;">0</span> <span style="color: #933;">26px</span>;
	<span style="color: #000000; font-weight: bold;">background</span>: <span style="color: #993333;">url</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;radio.png&quot;</span><span style="color: #66cc66;">&#41;</span>;
	background-repeat<span style="color: #3333ff;">:no-repeat</span>;
	<span style="color: #000000; font-weight: bold;">cursor</span>: <span style="color: #993333;">default</span>;
<span style="color: #66cc66;">&#125;</span>
<span style="color: #6666ff;">.checkbox</span> <span style="color: #66cc66;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">height</span>: <span style="color: #933;">25px</span>;
	<span style="color: #000000; font-weight: bold;">width</span>: <span style="color: #933;">19px</span>;
	clear<span style="color: #3333ff;">:left</span>;
	float<span style="color: #3333ff;">:left</span>;
	<span style="color: #000000; font-weight: bold;">margin</span>: <span style="color: #933;">0</span> <span style="color: #933;">0</span> <span style="color: #933;">3px</span>;
	<span style="color: #000000; font-weight: bold;">padding</span>: <span style="color: #933;">0</span> <span style="color: #933;">0</span> <span style="color: #933;">0</span> <span style="color: #933;">26px</span>;
	<span style="color: #000000; font-weight: bold;">background</span>: <span style="color: #993333;">url</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;checkbox.gif&quot;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333;">no-repeat</span>;
	<span style="color: #000000; font-weight: bold;">cursor</span>: <span style="color: #993333;">default</span>;
	text-align<span style="color: #3333ff;">:left</span>;
<span style="color: #66cc66;">&#125;</span>
<span style="color: #6666ff;">.checkbox</span> input,<span style="color: #6666ff;">.radio</span> input <span style="color: #66cc66;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">display</span>: <span style="color: #993333;">none</span>;
<span style="color: #66cc66;">&#125;</span>
<span style="color: #6666ff;">.checkbox</span> input<span style="color: #6666ff;">.show</span>,<span style="color: #6666ff;">.radio</span> input<span style="color: #6666ff;">.show</span> <span style="color: #66cc66;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">display</span>: <span style="color: #993333;">inline</span>;
<span style="color: #66cc66;">&#125;</span>
<span style="color: #6666ff;">.selected</span> <span style="color: #66cc66;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">background-position</span>: <span style="color: #933;">0</span> -<span style="color: #933;">52px</span>;
<span style="color: #66cc66;">&#125;</span>
<span style="color: #6666ff;">.block</span> <span style="color: #66cc66;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">width</span>: <span style="color: #933;"><span style="color: #933;">50</span>%</span>;
	<span style="color: #000000; font-weight: bold;">float</span>: <span style="color: #000000; font-weight: bold;">left</span>;
<span style="color: #66cc66;">&#125;</span>
label <span style="color: #66cc66;">&#123;</span>
	padding-left<span style="color: #3333ff;">:<span style="color: #933;">10px</span></span>;
	float<span style="color: #3333ff;">:left</span>;
	text-align<span style="color: #3333ff;">:left</span>;
<span style="color: #66cc66;">&#125;</span>
&nbsp;</pre>
<p>Here, <em><strong>CSS class</strong></em> which we need to give is not fixed and it can be changed in <strong>CSS</strong> code and <strong>Javascript</strong> as well. So in above example it is "radio" and "checkbox", which could be anything you want. The only thing which needs to be taken care of is it has to be consistent in all <strong>CSS</strong>, <strong>Javascript</strong> and <strong>HTML</strong> we generate.</p>
<p>See <a title="jQuery Fancy Custom Radio-button and Checkbox for Form Live in Action" href="http://www.digitss.com/jquery/custom-radio-checkbox/fancy_radio_button_and_checkbox.html" target="_blank">live demo in action</a> or just <a title="Download jQuery fancy custom radio/checkbox" href="http://www.digitss.com/jquery/custom-radio-checkbox.zip" target="_blank">download a zip</a> file consisting sample image, js and html code to play with.</p>
<p>Please comment your experience or any enhancement/feature you add to it or wish to have or any bug encountered while using it.</p>
<p><span style="color: #ff0000;">Love </span>to hear back from You..! <img src='http://blogs.digitss.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://blogs.digitss.com/javascript/radio-button-with-checkbox-behavior/" rel="bookmark" title="February 25, 2008">Radio-button with Checkbox behavior</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-javascript/implementing-quick-table-search-using-jquery-filter/" rel="bookmark" title="August 13, 2011">Implementing Quick Table Search using jQuery filter</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-plugin-radio-button-with-checkbox-behavior-updated/" rel="bookmark" title="March 6, 2008">jQuery Plugin &#8211; Radio button with Checkbox Behavior &#8211; Updated</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-tablesorter-plugin-a-friend-in-need/" rel="bookmark" title="February 28, 2008">jQuery tablesorter plugin &#8211; a friend in need&#8230;</a></li>
<li><a href="http://blogs.digitss.com/technology/hacking-jquery-thickbox/" rel="bookmark" title="April 27, 2008">Hacking jQuery Thickbox..!</a></li>
</ul>
<p><!-- Similar Posts took 9.731 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.digitss.com/javascript/jquery-javascript/jquery-fancy-custom-radio-and-checkbox/feed/</wfw:commentRss>
		<slash:comments>38</slash:comments>
		</item>
		<item>
		<title>jQuery 1.4 Released &#8211; jQuery UI has yet to achieve compatibility with it&#8230;</title>
		<link>http://blogs.digitss.com/javascript/jquery-javascript/jquery-1-4-released-jquery-ui-has-yet-to-achieve-compatibility-with-it/</link>
		<comments>http://blogs.digitss.com/javascript/jquery-javascript/jquery-1-4-released-jquery-ui-has-yet-to-achieve-compatibility-with-it/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 06:07:34 +0000</pubDate>
		<dc:creator>Dharmavirsinh Jhala</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://blogs.digitss.com/?p=341</guid>
		<description><![CDATA[Last week jQuery 1.4 is released with a new website for the version. Lot of code has been rewritten to improve code and reduce function calls. I have been using jQuery since more than 2 years now and it is always good to upgrade to newer version of jQuery which brings more function to help [...]]]></description>
			<content:encoded><![CDATA[<p>Last week <strong>jQuery 1.4</strong> is released with a <a title="jQuery 1.4 Home" href="http://jquery14.com" target="_blank">new website for the version</a>. Lot of code has been rewritten to improve code and reduce function calls. I have been using jQuery since more than 2 years now and it is always good to upgrade to newer version of jQuery which brings more function to help us more <strong>speed</strong> and <strong>performance</strong>. There are more than dozens of new additions for developers and it will just help all of us to do things in better way with jQuery now..!</p>
<h3>jQuery and jQuery-UI Compatibility:</h3>
<p>The fact is <strong>jQuery and </strong><strong>jQueryUI are not compatible, YES they are not</strong>. I tried to upgrade my application with <strong>jQuery1.4</strong> but <strong>UI components</strong> are failed to work. I was using <strong>jQueryUI 1.7.2</strong>, later on I digg-in on the web to see how soon <strong>UI</strong> will support <strong>jQuery1.4</strong> but seems like <strong>1.7.x </strong>won't do that probably <strong>1.8.x</strong> would.  So I tried looking at what is cooking with <strong>jQueryUI 1.8</strong> but when I downloaded <strong>alpha</strong> release of <strong>UI1.8.a1</strong> it had<strong> jQuery1.3.2</strong> powering it...!<span id="more-341"></span></p>
<p>So I am just positive that before <strong>jQuery UI 1.8</strong> will be released for production they would probably add support or make it compatible with <strong>jQuery 1.4</strong>.</p>
<h3>Help/Reference:</h3>
<div id="attachment_342" class="wp-caption alignleft" style="width: 510px"><a href="http://blogs.digitss.com/wp-content/uploads/2010/01/function_calls_for_popular_jquery_methods.jpg"><img class="size-full wp-image-342" title="Function calls for Popular jQuery methods" src="http://blogs.digitss.com/wp-content/uploads/2010/01/function_calls_for_popular_jquery_methods.jpg" alt="Function calls for Popular jQuery methods" width="500" height="375" /></a><p class="wp-caption-text">Function calls for Popular jQuery methods</p></div>
<p>See how dramatically the function calls are reduced in <strong>1.4</strong> compared to <strong>1.3.2</strong>..! It's just indication that how hard-work <strong>John Resig and </strong><strong>Team</strong> would have put in.</p>
<p>To learn jQuery 1.4 and more about it's feature visit official website <a title="jQuery 1.4 14 days of jQuery" href="http://jquery14.com/day-01/jquery-14" target="_blank">http://jquery14.com/</a> or take a look at this post on <a title="The 15 New Features you Must Know" href="http://net.tutsplus.com/tutorials/javascript-ajax/jquery-1-4-released-the-15-new-features-you-must-know/" target="_blank">net-tuts website to checkout 15 must-know features</a> of <strong>jQuery 1.4</strong>.<strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://blogs.digitss.com/javascript/jquery-javascript/jquery-1-5-2-and-jquery-mobile-alpha-4-released/" rel="bookmark" title="April 3, 2011">jQuery 1.5.2 and jQuery mobile alpha 4 released</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-javascript/jquery-case-insensitive-contains-expression/" rel="bookmark" title="April 20, 2011">jQuery case-insensitive Contains Expression..!</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-javascript/implementing-quick-table-search-using-jquery-filter/" rel="bookmark" title="August 13, 2011">Implementing Quick Table Search using jQuery filter</a></li>
<li><a href="http://blogs.digitss.com/technology/hacking-jquery-thickbox/" rel="bookmark" title="April 27, 2008">Hacking jQuery Thickbox..!</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-1-2-5-released/" rel="bookmark" title="May 21, 2008">jQuery 1.2.5 released</a></li>
</ul>
<p><!-- Similar Posts took 4.824 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.digitss.com/javascript/jquery-javascript/jquery-1-4-released-jquery-ui-has-yet-to-achieve-compatibility-with-it/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Radio-buttons with Checkbox behavior &#8211; a jQuery Plugin 1.2.5</title>
		<link>http://blogs.digitss.com/javascript/jquery-javascript/radio-buttons-with-checkbox-behavior-a-jquery-plugin-1-2-5/</link>
		<comments>http://blogs.digitss.com/javascript/jquery-javascript/radio-buttons-with-checkbox-behavior-a-jquery-plugin-1-2-5/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 15:02:28 +0000</pubDate>
		<dc:creator>Dharmavirsinh Jhala</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Tools / Plugins / Extenstion]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Radio-buttons]]></category>

		<guid isPermaLink="false">http://blogs.digitss.com/?p=325</guid>
		<description><![CDATA[This is almost final release to a innovative plug-in which changes the basic behavior of any Radio-button in our form and makes it selectable or un-selectable just like a checkbox.]]></description>
			<content:encoded><![CDATA[<p>This is almost final release to a innovative plug-in which changes the basic behavior of any Radio-button in our form and makes it selectable or un-selectable just like a checkbox.</p>
<p>It includes some code improvements and stays compatible to latest version of jQuery 1.3.2 just like 1.2.4. It has been tested on Safari 4.x, Internet Explorer 7.0+, Firefox 3.x and will work on Chrome 2.x or 3.x as well.</p>
<p>I request any users to post back any problems/bugs they encounter or enhancements they need to be included.<br />
<span id="more-325"></span></p>
<div id="attachment_326" class="wp-caption alignleft" style="width: 416px"><img class="size-full wp-image-326" title="jQuery Radio-button with Checkbox behavior" src="http://blogs.digitss.com/wp-content/uploads/2009/12/jquery-radio-button-with-checkbox-behavior.jpg" alt="jQuery Radio-button with Checkbox behavior" width="406" height="445" /><p class="wp-caption-text">jQuery Radio-button with Checkbox behavior</p></div>
<p>I saw a bug reported by <a title="Bug Reported by ReneLeonhardt" href="http://plugins.jquery.com/user/8243" target="_blank">ReneLeonhardt</a> and tried to find out bug everything seemed all-right. Though I have made some changes, but still if you think that there is any patch required please let me know.<strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://blogs.digitss.com/javascript/jquery-plugin-radio-button-with-checkbox-behavior-updated/" rel="bookmark" title="March 6, 2008">jQuery Plugin &#8211; Radio button with Checkbox Behavior &#8211; Updated</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-javascript/jquery-magnet-multi-select-list-dg-magnet-combo/" rel="bookmark" title="January 25, 2011">jQuery Magnet Multi-Select List &#8211; DG Magnet Combo</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-javascript/jquery-1-5-2-and-jquery-mobile-alpha-4-released/" rel="bookmark" title="April 3, 2011">jQuery 1.5.2 and jQuery mobile alpha 4 released</a></li>
<li><a href="http://blogs.digitss.com/javascript/radio-button-with-checkbox-behavior/" rel="bookmark" title="February 25, 2008">Radio-button with Checkbox behavior</a></li>
<li><a href="http://blogs.digitss.com/database/mysql/mysql-5-1-general-availability-announced/" rel="bookmark" title="November 27, 2008">MySQL 5.1 General Availability announced</a></li>
</ul>
<p><!-- Similar Posts took 111.619 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.digitss.com/javascript/jquery-javascript/radio-buttons-with-checkbox-behavior-a-jquery-plugin-1-2-5/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>jQuery UI &#8211; 1.7.1 is released..</title>
		<link>http://blogs.digitss.com/javascript/jquery-javascript/jquery-ui-171-is-released/</link>
		<comments>http://blogs.digitss.com/javascript/jquery-javascript/jquery-ui-171-is-released/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 15:43:52 +0000</pubDate>
		<dc:creator>Dharmavirsinh Jhala</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[ui]]></category>

		<guid isPermaLink="false">http://blogs.digitss.com/?p=221</guid>
		<description><![CDATA[The good new is that jQuery UI - 1.7.1 is out... and things are looking quite well. But still lot more to go. I am still waiting for lot of official UI widgets and Navigation or Context Menu are in that list.]]></description>
			<content:encoded><![CDATA[<p>The good new is that <a title="jQuery UI Home" href="http://jqueryui.com/" target="_blank">jQuery UI - 1.7.1 is out</a>... and things are looking quite well. But still lot more to go. I am still waiting for lot of official UI widgets and <strong>Navigation</strong> or <strong>Context Menu </strong>are in that list.</p>
<p>jQuery is one of my favorite Javascript framework and so I am hoping for better growth of it's UI part as well.</p>
<p>I know discussions and planning are going on the <a title="jQuery UI - Wiki" href="http://jqueryui.pbwiki.com/Menu" target="_blank">Wiki</a> and I know everyone will have a wishlist like I have. There are lot of options available as an plugins but having them in official UI bundle is a more better. UI Team must be working hard and there is lot of things which needs to be done.. All the best to jQuery UI team for bringing in Good for the future.</p>
<p>I have some complaints as well..but may be sometime later.<strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://blogs.digitss.com/javascript/jquery-javascript/jquery-1-4-released-jquery-ui-has-yet-to-achieve-compatibility-with-it/" rel="bookmark" title="January 24, 2010">jQuery 1.4 Released &#8211; jQuery UI has yet to achieve compatibility with it&#8230;</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-1-2-5-released/" rel="bookmark" title="May 21, 2008">jQuery 1.2.5 released</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-tablesorter-plugin-a-friend-in-need/" rel="bookmark" title="February 28, 2008">jQuery tablesorter plugin &#8211; a friend in need&#8230;</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-javascript/jquery-1-5-2-and-jquery-mobile-alpha-4-released/" rel="bookmark" title="April 3, 2011">jQuery 1.5.2 and jQuery mobile alpha 4 released</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-or-non-jquery-calendar-schedulers/" rel="bookmark" title="April 10, 2011">jQuery or non-jQuery Calendar Schedulers</a></li>
</ul>
<p><!-- Similar Posts took 41.391 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.digitss.com/javascript/jquery-javascript/jquery-ui-171-is-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery 1.3.2 is out</title>
		<link>http://blogs.digitss.com/javascript/jquery-1-3-2-is-out/</link>
		<comments>http://blogs.digitss.com/javascript/jquery-1-3-2-is-out/#comments</comments>
		<pubDate>Sun, 22 Feb 2009 06:26:39 +0000</pubDate>
		<dc:creator>Dharmavirsinh Jhala</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://blogs.digitss.com/?p=214</guid>
		<description><![CDATA[jQuery 1.3.2 released with more improvements with some of selectors.]]></description>
			<content:encoded><![CDATA[<p>It is good to see that after 1.2.6 release new iterations of version 1.3 are taking place on fast pace for jQuery. Although 1.3 release has been totally revamped with brand new selector engine inside. It is great that with every new release jQuery is coming up with better performance of selectors. jQuery 1.3.1 was bugfix release while 1.3.2 is with some nice selector performance improvements. I have not tested it yet by plugging it into any of my existing heavy-weight form application but you can <a title="jQuery 1.3.2 release notes" href="http://docs.jquery.com/Release:jQuery_1.3.2" target="_blank">check release notes here</a>.<strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://blogs.digitss.com/javascript/jquery-1-2-5-released/" rel="bookmark" title="May 21, 2008">jQuery 1.2.5 released</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-javascript/jquery-case-insensitive-contains-expression/" rel="bookmark" title="April 20, 2011">jQuery case-insensitive Contains Expression..!</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-plugin-radio-button-with-checkbox-behavior-updated/" rel="bookmark" title="March 6, 2008">jQuery Plugin &#8211; Radio button with Checkbox Behavior &#8211; Updated</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-javascript/jquery-1-4-released-jquery-ui-has-yet-to-achieve-compatibility-with-it/" rel="bookmark" title="January 24, 2010">jQuery 1.4 Released &#8211; jQuery UI has yet to achieve compatibility with it&#8230;</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-javascript/radio-buttons-with-checkbox-behavior-a-jquery-plugin-1-2-5/" rel="bookmark" title="December 13, 2009">Radio-buttons with Checkbox behavior &#8211; a jQuery Plugin 1.2.5</a></li>
</ul>
<p><!-- Similar Posts took 6.759 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.digitss.com/javascript/jquery-1-3-2-is-out/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>jQuery 1.2.5 released</title>
		<link>http://blogs.digitss.com/javascript/jquery-1-2-5-released/</link>
		<comments>http://blogs.digitss.com/javascript/jquery-1-2-5-released/#comments</comments>
		<pubDate>Wed, 21 May 2008 18:39:01 +0000</pubDate>
		<dc:creator>Dharmavirsinh Jhala</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://blogs.digitss.com/?p=76</guid>
		<description><![CDATA[jQuery 1.2.5 is available only after one day of jQuery's 1.2.4 release. jQuery 1.2.4 was a bad build probably. There were some patches missing and difference was small compared to the list of bugs fixed. There is a huge bunch of tickets which is closed. Here is the list of tickets closed for jQuery 1.2.4 [...]]]></description>
			<content:encoded><![CDATA[<p>jQuery 1.2.5 is available only after one day of jQuery's 1.2.4 release. jQuery 1.2.4 was a bad build probably. There were some patches missing and difference was small compared to the list of bugs fixed.</p>
<p>There is a huge bunch of tickets which is closed. Here is the <a title="jQuery tickets closed for version 1.2.5." href="http://dev.jquery.com/report/27" target="_blank">list of tickets closed for jQuery 1.2.4 or 1.2.5</a>. There were many browser compatibilities related issues and some are performance related and core improvements.</p>
<p>Good to see that our favourite Javascript framework is becoming more and more mature day by day.</p>
<p>Click here to see the <a title="jQuery why 1.2.4 has been rebuilt as 1.2.5" href="http://www.nabble.com/1.2.4-missing-patches--td17354452s27240.html" target="_blank">reason behind rebuilding 1.2.4 as 1.2.5</a></p>
<p><a title="Download jQuery 1.2.5" href="http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.2.5.js" target="_blank">Download jQuery 1.2.5</a><strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://blogs.digitss.com/javascript/jquery-javascript/jquery-1-5-2-and-jquery-mobile-alpha-4-released/" rel="bookmark" title="April 3, 2011">jQuery 1.5.2 and jQuery mobile alpha 4 released</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-plugin-radio-button-with-checkbox-behavior-updated/" rel="bookmark" title="March 6, 2008">jQuery Plugin &#8211; Radio button with Checkbox Behavior &#8211; Updated</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-javascript/jquery-1-4-released-jquery-ui-has-yet-to-achieve-compatibility-with-it/" rel="bookmark" title="January 24, 2010">jQuery 1.4 Released &#8211; jQuery UI has yet to achieve compatibility with it&#8230;</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-javascript/jquery-ui-171-is-released/" rel="bookmark" title="April 12, 2009">jQuery UI &#8211; 1.7.1 is released..</a></li>
<li><a href="http://blogs.digitss.com/javascript/jquery-tablesorter-plugin-a-friend-in-need/" rel="bookmark" title="February 28, 2008">jQuery tablesorter plugin &#8211; a friend in need&#8230;</a></li>
</ul>
<p><!-- Similar Posts took 4.773 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.digitss.com/javascript/jquery-1-2-5-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 5.766 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2011-08-13 12:45:09 -->

