<?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>BarelyBlogging &#187; tabbifier</title>
	<atom:link href="http://www.barelyfitz.com/blog/archives/category/tabbifier/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.barelyfitz.com/blog</link>
	<description>Patrick Fitzgerald of BarelyFitz Designs</description>
	<lastBuildDate>Thu, 13 Oct 2011 01:55:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>movable tabber</title>
		<link>http://www.barelyfitz.com/blog/archives/2007/08/15/642/</link>
		<comments>http://www.barelyfitz.com/blog/archives/2007/08/15/642/#comments</comments>
		<pubDate>Wed, 15 Aug 2007 15:16:22 +0000</pubDate>
		<dc:creator>pat</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[tabber]]></category>
		<category><![CDATA[tabbifier]]></category>

		<guid isPermaLink="false">http://www.barelyfitz.com/blog/archives/2007/08/15/642/</guid>
		<description><![CDATA[Cool, the folks over at Movable Type (blogging software) are using my JavaScript tabs script. They even came up with a nice enhancement.
]]></description>
			<content:encoded><![CDATA[<p>Cool, the folks over at <a href="http://www.movabletype.com/products/mt4.html">Movable Type</a> (blogging software) are using my <a href="http://www.barelyfitz.com/projects/tabber/">JavaScript tabs</a> script. They even came up with a nice <a href="http://groups.google.com/group/barelyfitz/browse_thread/thread/03e8b0672238391a">enhancement</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.barelyfitz.com/blog/archives/2007/08/15/642/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>workaround for entity bug (?) in tabber</title>
		<link>http://www.barelyfitz.com/blog/archives/2007/02/06/527/</link>
		<comments>http://www.barelyfitz.com/blog/archives/2007/02/06/527/#comments</comments>
		<pubDate>Tue, 06 Feb 2007 13:25:49 +0000</pubDate>
		<dc:creator>pat</dc:creator>
				<category><![CDATA[DHTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tabber]]></category>
		<category><![CDATA[tabbifier]]></category>
		<category><![CDATA[user interface]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://www.barelyfitz.com/blog/archives/2007/02/06/527/</guid>
		<description><![CDATA[A user of my tabber script discovered that when his tab headings had an ampersand character like this:
&#60;h2&#62;Me &#38;amp; My Shadow&#60;/h2&#62;
Then the tab control displayed &#8220;&#38;amp;&#8221; instead of a single ampersand character.
It looks like this occurs because the JavaScript DOM function document.createTextNode() does not convert entities. However, it looks like innerHTML does convert entities, so [...]]]></description>
			<content:encoded><![CDATA[<p>A user of my <a href="http://www.barelyfitz.com/projects/tabber/">tabber</a> script discovered that when his tab headings had an ampersand character like this:</p>
<p><code>&lt;h2&gt;Me &amp;amp; My Shadow&lt;/h2&gt;</code></p>
<p>Then the tab control displayed &#8220;&amp;amp;&#8221; instead of a single ampersand character.</p>
<p>It looks like this occurs because the JavaScript DOM function document.createTextNode() does not convert entities. However, it looks like innerHTML does convert entities, so to fix your problem find the following line in <a href="http://www.barelyfitz.com/projects/tabber/tabber.js">tabber.js</a>:</p>
<p><code>DOM_a.appendChild(document.createTextNode(t.headingText));</code></p>
<p>and replace with the following:</p>
<p><code>DOM_a.innerHTML = t.headingText;</code></p>
<p>I&#8217;ll think about this some more and if I can&#8217;t find any bad side effects I&#8217;ll add to the tabber code.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.barelyfitz.com/blog/archives/2007/02/06/527/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>JavaScript tab interface with persistent tabs</title>
		<link>http://www.barelyfitz.com/blog/archives/2006/04/07/309/</link>
		<comments>http://www.barelyfitz.com/blog/archives/2006/04/07/309/#comments</comments>
		<pubDate>Fri, 07 Apr 2006 05:38:45 +0000</pubDate>
		<dc:creator>pat</dc:creator>
				<category><![CDATA[DHTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[cookies]]></category>
		<category><![CDATA[tabber]]></category>
		<category><![CDATA[tabbifier]]></category>
		<category><![CDATA[user interface]]></category>

		<guid isPermaLink="false">http://www.barelyfitz.com/blog/archives/2006/04/07/309/</guid>
		<description><![CDATA[
Now with yummy cookies!
I added an example page showing how you can use the new onLoad and onClick function hooks in my JavaScript tabifier to make the tabs persistent (using browser cookies).
That is, if you leave the page and come back later, the tab you previously selected will still be selected.
]]></description>
			<content:encoded><![CDATA[<div class="shadow"><img id="image308" alt="cookies" src="http://www.barelyfitz.com/blog/upload/cookies.jpg" /></div>
<p>Now with yummy cookies!</p>
<p>I added an example page showing how you can use the new onLoad and onClick function hooks in my <a href="http://www.barelyfitz.com/projects/tabber/">JavaScript tabifier</a> to make the tabs persistent (using browser cookies).</p>
<p>That is, if you leave the page and come back later, the tab you previously selected will still be selected.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.barelyfitz.com/blog/archives/2006/04/07/309/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>

