<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments for jDempster.com</title>
	<link>http://www.jdempster.com</link>
	<description>the one constant in life, is change.</description>
	<pubDate>Sat, 05 Jul 2008 18:24:04 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
		<item>
		<title>Comment on jQuery cookieJar by lalit.lab &#187; Blog Archive &#187; Cookie Jar: Yummy JSON Cookies (using Prototype)</title>
		<link>http://www.jdempster.com/2007/08/11/jquery-cookiejar/#comment-318</link>
		<dc:creator>lalit.lab &#187; Blog Archive &#187; Cookie Jar: Yummy JSON Cookies (using Prototype)</dc:creator>
		<pubDate>Sun, 15 Jun 2008 07:31:13 +0000</pubDate>
		<guid>http://www.jdempster.com/2007/08/11/jquery-cookiejar/#comment-318</guid>
		<description>[...] jQuery port [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] jQuery port [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery cookieJar by John</title>
		<link>http://www.jdempster.com/2007/08/11/jquery-cookiejar/#comment-312</link>
		<dc:creator>John</dc:creator>
		<pubDate>Thu, 12 Jun 2008 18:40:59 +0000</pubDate>
		<guid>http://www.jdempster.com/2007/08/11/jquery-cookiejar/#comment-312</guid>
		<description>This looks great, one (probably stupid) question. How would I set a cookie with a link? For instance 'click here to set cookie'. I want to have links where customers can find out more about products, then when they are ready can go to a contact form and all the products from the cookiejar are auto filled into the comment form. I think I see how to load the cookies into the form but not sure what code I use to 'choose' product. Thanks for the great code.</description>
		<content:encoded><![CDATA[<p>This looks great, one (probably stupid) question. How would I set a cookie with a link? For instance &#8216;click here to set cookie&#8217;. I want to have links where customers can find out more about products, then when they are ready can go to a contact form and all the products from the cookiejar are auto filled into the comment form. I think I see how to load the cookies into the form but not sure what code I use to &#8216;choose&#8217; product. Thanks for the great code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Tablesorter Cookie Widget by John</title>
		<link>http://www.jdempster.com/2007/08/13/jquery-tablesorter-cookie-widget/#comment-204</link>
		<dc:creator>John</dc:creator>
		<pubDate>Fri, 23 May 2008 10:39:50 +0000</pubDate>
		<guid>http://www.jdempster.com/2007/08/13/jquery-tablesorter-cookie-widget/#comment-204</guid>
		<description>Thanks a lot for posting this up - I use the tablesorter plugin quite a lot and this is nicely fills in one of the missing gaps.

Looking forward to giving it a spin. It's also one of the great things about jQuery that plugins can just be extended like this.

Cheers</description>
		<content:encoded><![CDATA[<p>Thanks a lot for posting this up - I use the tablesorter plugin quite a lot and this is nicely fills in one of the missing gaps.</p>
<p>Looking forward to giving it a spin. It&#8217;s also one of the great things about jQuery that plugins can just be extended like this.</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery cookieJar by dave</title>
		<link>http://www.jdempster.com/2007/08/11/jquery-cookiejar/#comment-154</link>
		<dc:creator>dave</dc:creator>
		<pubDate>Fri, 16 May 2008 13:27:29 +0000</pubDate>
		<guid>http://www.jdempster.com/2007/08/11/jquery-cookiejar/#comment-154</guid>
		<description>That works perfectly, Thank you...</description>
		<content:encoded><![CDATA[<p>That works perfectly, Thank you&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery cookieJar by letssurf</title>
		<link>http://www.jdempster.com/2007/08/11/jquery-cookiejar/#comment-152</link>
		<dc:creator>letssurf</dc:creator>
		<pubDate>Fri, 16 May 2008 09:47:38 +0000</pubDate>
		<guid>http://www.jdempster.com/2007/08/11/jquery-cookiejar/#comment-152</guid>
		<description>Try this

&lt;pre lang="javascript"&gt;
jQuery(function($) {
	var cookieJar = $.cookieJar('CookieJar');
	$.each(cookieJar.toObject(), function(i, val) {
	    if (val == 'closed') {
	        $('#'+i).hide();
	    }
	});
});
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Try this</p>

<div class="wp_syntax"><div class="code"><pre class="javascript">jQuery<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: #003366; font-weight: bold;">var</span> cookieJar = $.<span style="color: #006600;">cookieJar</span><span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'CookieJar'</span><span style="color: #66cc66;">&#41;</span>;
	$.<span style="color: #006600;">each</span><span style="color: #66cc66;">&#40;</span>cookieJar.<span style="color: #006600;">toObject</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>, <span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span>i, val<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
	    <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #66cc66;">&#40;</span>val == <span style="color: #3366CC;">'closed'</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
	        $<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'#'</span>+i<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;">&#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>;</pre></div></div>

]]></content:encoded>
	</item>
</channel>
</rss>
