<?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>Twelve Dozen &#187; jquery</title>
	<atom:link href="http://www.twelvedozen.co.uk/tag/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.twelvedozen.co.uk</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 16 Jun 2010 08:26:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Jquery slide show for Drupal</title>
		<link>http://www.twelvedozen.co.uk/2010/01/jquery-slide-show-for-drupal/</link>
		<comments>http://www.twelvedozen.co.uk/2010/01/jquery-slide-show-for-drupal/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 12:00:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Drupal]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.twelvedozen.co.uk/2010/01/jquery-slide-show-for-drupal/</guid>
		<description><![CDATA[If you need a slideshow for your Drupal website, I recommend using JCarousel Lite &#8211; http://gmarwaha.com/jquery/jcarousellite/
It has lots of parameters to tweak depending on how you want to set it up. It&#8217;s easy to get working.
One slight issue (well major issue really until I fixed it), that I had using this with Drupal was that [...]]]></description>
			<content:encoded><![CDATA[<p>If you need a slideshow for your Drupal website, I recommend using JCarousel Lite &#8211; http://gmarwaha.com/jquery/jcarousellite/</p>
<p>It has lots of parameters to tweak depending on how you want to set it up. It&#8217;s easy to get working.</p>
<p>One slight issue (well major issue really until I fixed it), that I had using this with Drupal was that initially I needed to press F5 to refresh the browser before the images would display.</p>
<p>The fix for it was to surround the code with $(document).ready(function () { }</p>
<p>Here&#8217;s my code:</p>
<p>&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
$(document).ready(function () {<br />
$(&#8221;.carousel&#8221;).jCarouselLite({<br />
btnNext: &#8220;.next&#8221;,<br />
btnPrev: &#8220;.prev&#8221;,<br />
scroll: 1,<br />
auto: 1200,<br />
speed: 1600,<br />
visible: 1<br />
});<br />
});<br />
&lt;/script&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.twelvedozen.co.uk/2010/01/jquery-slide-show-for-drupal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Form Date Picker &#8211; jQuery</title>
		<link>http://www.twelvedozen.co.uk/2009/09/form-date-picker-jquery/</link>
		<comments>http://www.twelvedozen.co.uk/2009/09/form-date-picker-jquery/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 08:52:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.twelvedozen.co.uk/2009/09/form-date-picker-jquery/</guid>
		<description><![CDATA[I wanted to find a better solution to inputting dates on a form than expecting users to manually input dates.
I searched for AJAX date pickers and there were a number of options, although a lot of them were calendars and not specific date pickers. I&#8217;d heard a lot about jQuery so I decided to give [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to find a better solution to inputting dates on a form than expecting users to manually input dates.<br />
I searched for AJAX date pickers and there were a number of options, although a lot of them were calendars and not specific date pickers. I&#8217;d heard a lot about jQuery so I decided to give that a go.<br />
http://docs.jquery.com/UI/Datepicker</p>
<p>It was very easy to install. Download jQuery. Add the js files to the header of my page. Add the css class to the form input tag.<br />
In MySQL I was using Date as the field type so I need to adjust the format of the form field to match the date input i.e. 2009-09-01<br />
Reading the jQuery documents this was fairly simple:<br />
$(&#8217;.datepicker&#8217;).datepicker({ dateFormat: &#8216;yy-mm-dd&#8217; });</p>
<p>Thinking about it now I could probably use a fairly simple dropdown option for year &#8211; month &#8211; day, but it&#8217;s fun to learn to use jQuery.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.twelvedozen.co.uk/2009/09/form-date-picker-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
