<?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>FruitBatInShades Code &#187; JQuery</title>
	<atom:link href="http://www.fruitbatscode.com/category/javascript/jquery/feed" rel="self" type="application/rss+xml" />
	<link>http://www.fruitbatscode.com</link>
	<description>Where the fruitbat keeps his notes</description>
	<lastBuildDate>Thu, 13 May 2010 08:29:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>jQuery equal height columns</title>
		<link>http://www.fruitbatscode.com/javascript/jquery/jquery-equal-height-columns</link>
		<comments>http://www.fruitbatscode.com/javascript/jquery/jquery-equal-height-columns#comments</comments>
		<pubDate>Wed, 12 May 2010 15:19:56 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[My Stuff]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=381</guid>
		<description><![CDATA[Sometimes equal height columns via css can be an absolute nightmare! If you&#8217;re using jQuery for other items on the page you can cheat with the following function : function setEqualHeight(items) { var highest = 0; items.each( function(){ current = $(this).height(); if(current &#62; highest){ highest = current; } }); items.height(highest); }; It just loops the [...]]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/javascript/jquery/jquery-equal-height-columns/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript dictionary &amp; getIds</title>
		<link>http://www.fruitbatscode.com/javascript/javascript-dictionary-getids</link>
		<comments>http://www.fruitbatscode.com/javascript/javascript-dictionary-getids#comments</comments>
		<pubDate>Sun, 11 Oct 2009 17:14:57 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[My Stuff]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=333</guid>
		<description><![CDATA[<p>Coming from a .net background I must admit to missing many of the features that the framework provides like Hastables, 
			Dictionaries and Lists. I've just come up with a really simple dictionary class that I use to hold results from my id parsing routine.</p>]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/javascript/javascript-dictionary-getids/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery fbisCalendar</title>
		<link>http://www.fruitbatscode.com/javascript/jquery/jquery-fbiscalendar</link>
		<comments>http://www.fruitbatscode.com/javascript/jquery/jquery-fbiscalendar#comments</comments>
		<pubDate>Fri, 18 Sep 2009 18:36:04 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[My Stuff]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=308</guid>
		<description><![CDATA[Here is my first freely available jQuery plug-in.  There are a few more to follow soon including a form builder and a file explorer Overview I know there are a million calendar selectors out there but I needed one that covered historical dates (1800-2100).  It displays either as a in place calendar in the page [...]]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/javascript/jquery/jquery-fbiscalendar/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>JQuery carousel plugin</title>
		<link>http://www.fruitbatscode.com/javascript/jquery/jquery-carousel-plugin</link>
		<comments>http://www.fruitbatscode.com/javascript/jquery/jquery-carousel-plugin#comments</comments>
		<pubDate>Thu, 26 Mar 2009 18:46:02 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[My Stuff]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=200</guid>
		<description><![CDATA[This is the start of a jQuery carousel. I&#8217;ve used a few carousels but they require a lot of css editing to get them to change widths etc. I wanted one that could easily adapt to displaying different numbers of items. It accepts a noOfItems config that defines how many items it displays and it [...]]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/javascript/jquery/jquery-carousel-plugin/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JQuery selectors reminder</title>
		<link>http://www.fruitbatscode.com/javascript/jquery/jquery-selectors-reminder</link>
		<comments>http://www.fruitbatscode.com/javascript/jquery/jquery-selectors-reminder#comments</comments>
		<pubDate>Wed, 25 Mar 2009 21:28:48 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[My Stuff]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=193</guid>
		<description><![CDATA[Selectors in JQuery are extremely powerful. This is a simple page to test them and as a quick reminder as to what&#8217;s available. .result{background:#dfd;border:solid 1px #eee} $(document).ready(function(){initialise();}); function initialise() { $("a.TestSelector").bind('click',function(e){ runSelector($("#TestSelector").val()); e.stopPropagation(); return false; //e.stopPropigation(); }); $("a.action.runselector").bind('click',function(e){ e.stopPropagation(); runSelector($(e.target).text()); return false; }); } function runSelector(text) { try { $(".result").removeClass("result"); var result = $(text); if [...]]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/javascript/jquery/jquery-selectors-reminder/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JQuery Mini-tips</title>
		<link>http://www.fruitbatscode.com/javascript/jquery-mini-tips</link>
		<comments>http://www.fruitbatscode.com/javascript/jquery-mini-tips#comments</comments>
		<pubDate>Fri, 06 Mar 2009 10:14:40 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[My Stuff]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=175</guid>
		<description><![CDATA[Get a DOM object from a JQuery obj $&#40;'#' + id&#41;.get&#40;0&#41;; //get the dom object from the jquery wrapper Only include object if JQuery is available //only include if jquery is available if &#40;typeof jQuery != 'undefined'&#41; &#123; //class goes here &#125; Get selected item in select list $&#40;'#selectList'&#41;.val&#40;&#41;;//value $&#40;'#selectList :selected'&#41;.text&#40;&#41;; //text of option Check [...]]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/javascript/jquery-mini-tips/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple JQuery Treeview</title>
		<link>http://www.fruitbatscode.com/javascript/jquery/simple-jquery-treeview</link>
		<comments>http://www.fruitbatscode.com/javascript/jquery/simple-jquery-treeview#comments</comments>
		<pubDate>Fri, 30 Jan 2009 22:34:16 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[My Stuff]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=90</guid>
		<description><![CDATA[I&#8217;ve been trying to write my first JQuery plug in and went for a tree view because I need to display some nested data. Nothing complicated and more about trying to understand the JQuery plug in structure really. It&#8217;s pretty well commented so I won&#8217;t explain it I will develop this further as I start [...]]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/javascript/jquery/simple-jquery-treeview/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
