<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: jQuery tabs and cookies</title>
	<atom:link href="http://perassi.org/2008/04/11/jquery-tabs-and-cookies/feed/" rel="self" type="application/rss+xml" />
	<link>http://perassi.org/2008/04/11/jquery-tabs-and-cookies/</link>
	<description>English scratches and Italian notes written by Carlo Perassi</description>
	<pubDate>Sat, 22 Nov 2008 15:06:17 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>By: Marian Bida</title>
		<link>http://perassi.org/2008/04/11/jquery-tabs-and-cookies/#comment-5273</link>
		<dc:creator>Marian Bida</dc:creator>
		<pubDate>Mon, 20 Oct 2008 12:57:40 +0000</pubDate>
		<guid isPermaLink="false">http://perassi.org/?p=348#comment-5273</guid>
		<description>Don't try it, just use it, it is working good..</description>
		<content:encoded><![CDATA[<p>Don&#8217;t try it, just use it, it is working good..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PP</title>
		<link>http://perassi.org/2008/04/11/jquery-tabs-and-cookies/#comment-5266</link>
		<dc:creator>PP</dc:creator>
		<pubDate>Tue, 14 Oct 2008 18:55:21 +0000</pubDate>
		<guid isPermaLink="false">http://perassi.org/?p=348#comment-5266</guid>
		<description>thx Alien Y :)</description>
		<content:encoded><![CDATA[<p>thx Alien Y <img src='http://perassi.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carlo</title>
		<link>http://perassi.org/2008/04/11/jquery-tabs-and-cookies/#comment-4019</link>
		<dc:creator>Carlo</dc:creator>
		<pubDate>Fri, 15 Aug 2008 17:00:47 +0000</pubDate>
		<guid isPermaLink="false">http://perassi.org/?p=348#comment-4019</guid>
		<description>Dave, Alien Y:  thanks... I'm going to try your snippets as soon as possible and perhaps that could lead me to release an updated version of my code.</description>
		<content:encoded><![CDATA[<p>Dave, Alien Y:  thanks&#8230; I&#8217;m going to try your snippets as soon as possible and perhaps that could lead me to release an updated version of my code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alien Y</title>
		<link>http://perassi.org/2008/04/11/jquery-tabs-and-cookies/#comment-4014</link>
		<dc:creator>Alien Y</dc:creator>
		<pubDate>Fri, 15 Aug 2008 12:55:47 +0000</pubDate>
		<guid isPermaLink="false">http://perassi.org/?p=348#comment-4014</guid>
		<description>I rewrite for ui Tab3.0 + jQuery 1.2.6

var tab_cookie_id = parseInt($.cookie("the_tab_cookie")) &#124;&#124; 0; 
  
$("#container-1 &#62; ul").tabs({ 
selected: tab_cookie_id, 
select: function(e, ui) { if (ui.index == 0 &#38;&#38; tab1_use_ == 1) {/* do some thing */} 
}, 
show: function(e, ui) { var tab_id = ui.index; $.cookie("the_tab_cookie", tab_id, { expires: 30 }); } 
});</description>
		<content:encoded><![CDATA[<p>I rewrite for ui Tab3.0 + jQuery 1.2.6</p>
<p>var tab_cookie_id = parseInt($.cookie(&#8221;the_tab_cookie&#8221;)) || 0; </p>
<p>$(&#8221;#container-1 &gt; ul&#8221;).tabs({<br />
selected: tab_cookie_id,<br />
select: function(e, ui) { if (ui.index == 0 &amp;&amp; tab1_use_ == 1) {/* do some thing */}<br />
},<br />
show: function(e, ui) { var tab_id = ui.index; $.cookie(&#8221;the_tab_cookie&#8221;, tab_id, { expires: 30 }); }<br />
});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alien Y</title>
		<link>http://perassi.org/2008/04/11/jquery-tabs-and-cookies/#comment-4010</link>
		<dc:creator>Alien Y</dc:creator>
		<pubDate>Fri, 15 Aug 2008 07:51:27 +0000</pubDate>
		<guid isPermaLink="false">http://perassi.org/?p=348#comment-4010</guid>
		<description>fix some... 
work with jQuery 1.2.6 and ui-Tabs 1.5

var tab_cookie_id = parseInt($.cookie("the_tab_cookie")) &#124;&#124; 0; 
$("#container-1 &#62; ul").tabs({
    selected: tab_cookie_id, 
    show: function(e, ui) { var tab_id = ui.index; $.cookie("the_tab_cookie", tab_id, { expires: 30}); }
  });</description>
		<content:encoded><![CDATA[<p>fix some&#8230;<br />
work with jQuery 1.2.6 and ui-Tabs 1.5</p>
<p>var tab_cookie_id = parseInt($.cookie(&#8221;the_tab_cookie&#8221;)) || 0;<br />
$(&#8221;#container-1 &gt; ul&#8221;).tabs({<br />
    selected: tab_cookie_id,<br />
    show: function(e, ui) { var tab_id = ui.index; $.cookie(&#8221;the_tab_cookie&#8221;, tab_id, { expires: 30}); }<br />
  });</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://perassi.org/2008/04/11/jquery-tabs-and-cookies/#comment-3931</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Sat, 09 Aug 2008 10:09:20 +0000</pubDate>
		<guid isPermaLink="false">http://perassi.org/?p=348#comment-3931</guid>
		<description>This line:
show:     function(ui) { 
should be:
show:     function(junk,ui) { 
for jquery 1.2.6 I believe. The ui object is now the second parameter.</description>
		<content:encoded><![CDATA[<p>This line:<br />
show:     function(ui) {<br />
should be:<br />
show:     function(junk,ui) {<br />
for jquery 1.2.6 I believe. The ui object is now the second parameter.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
