<?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, 17 Nov 2011 12:20:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>jQuery &#8211; Syncing select options</title>
		<link>http://www.fruitbatscode.com/javascript/jquery/jquery-syncing-select-options</link>
		<comments>http://www.fruitbatscode.com/javascript/jquery/jquery-syncing-select-options#comments</comments>
		<pubDate>Fri, 04 Nov 2011 10:01:46 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[My Stuff]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=467</guid>
		<description><![CDATA[I had a requirement for a series of select boxes that required the related one to only allow selections above the first. I created a little utility function that enables and disables the options based on a function you supply.  Usage is pretty simple. Pass in the first and second select as jQuery objects, then [...]]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/javascript/jquery/jquery-syncing-select-options/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery &#8211; Get a childs relative position</title>
		<link>http://www.fruitbatscode.com/javascript/jquery/jquery-get-a-childs-relative-position</link>
		<comments>http://www.fruitbatscode.com/javascript/jquery/jquery-get-a-childs-relative-position#comments</comments>
		<pubDate>Thu, 13 Jan 2011 09:53:31 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=440</guid>
		<description><![CDATA[When processing sortables etc. Its handy to be able to get the index of individual items. Heres how you find the position of an li within a list: var position = $item.parent&#40;&#41;.find&#40;'&#62; li'&#41;.index&#40;$item&#41; + 1;]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/javascript/jquery/jquery-get-a-childs-relative-position/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery &#8211; Docking Panels</title>
		<link>http://www.fruitbatscode.com/javascript/jquery/jquery-docking-panels</link>
		<comments>http://www.fruitbatscode.com/javascript/jquery/jquery-docking-panels#comments</comments>
		<pubDate>Sun, 14 Nov 2010 16:10:21 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=393</guid>
		<description><![CDATA[Its been a while but I&#8217;m not far off releasing my cms and am just reworking the interface. Previously it had fixed panels at the top and left of the page but on some sites this caused the page to be squashed so I looked into creating docking panels and here is the result. It takes [...]]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/javascript/jquery/jquery-docking-panels/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<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[Javascript]]></category>
		<category><![CDATA[JQuery]]></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>6</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.]]></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[Javascript]]></category>
		<category><![CDATA[JQuery]]></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[N.B. This treeview has now been replaced by a more advanced sortable one on LiveFlex.co.uk called Sortable Treeview. 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 [...]]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/javascript/jquery/simple-jquery-treeview/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

