<?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>Bugzappy&#039;s Blog &#187; jquery</title>
	<atom:link href="http://www.bugzappy.com/tag/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bugzappy.com</link>
	<description>on building internet apps</description>
	<lastBuildDate>Mon, 25 Jan 2010 14:24:31 +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>Blink in style using jQuery</title>
		<link>http://www.bugzappy.com/2009/09/05/blink-in-style-using-jquery/</link>
		<comments>http://www.bugzappy.com/2009/09/05/blink-in-style-using-jquery/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 23:01:39 +0000</pubDate>
		<dc:creator>bugzappy</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.bugzappy.com/?p=328</guid>
		<description><![CDATA[Today I released the CyclicFade jQuery Plugin. It has its own dedicated page for details, demo, and download. It is listed in the jquery plugin repository.
]]></description>
			<content:encoded><![CDATA[<p>Today I released the CyclicFade jQuery Plugin. It has its own <a href="http://www.bugzappy.com/cyclic-fade-jquery-plugin/">dedicated page</a> for details, demo, and download. It is <a href="http://plugins.jquery.com/project/CyclicFade" target="_blank">listed in the jquery plugin repository</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bugzappy.com/2009/09/05/blink-in-style-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ExpandBox jquery plugin</title>
		<link>http://www.bugzappy.com/2009/04/02/expandbox-jquery-plugin/</link>
		<comments>http://www.bugzappy.com/2009/04/02/expandbox-jquery-plugin/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 06:13:42 +0000</pubDate>
		<dc:creator>bugzappy</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[controller]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[widget]]></category>

		<guid isPermaLink="false">http://www.bugzappy.com/?p=20</guid>
		<description><![CDATA[It&#8217;s a barebones plugin that acts purely as a browser-side widget controller, it does not come with canned HTML/CSS. You must pass the id&#8217;s of the &#60;div&#62; or other elements you want to control to the plugin.
The widget is just a box which starts with a limited height, and then can be expanded by the user [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s a barebones plugin that acts purely as a browser-side widget controller, it does not come with canned HTML/CSS. You must pass the id&#8217;s of the &lt;div&gt; or other elements you want to control to the plugin.</p>
<p>The widget is just a box which starts with a limited height, and then can be expanded by the user by a specified increment, or collpased entirely.</p>
<p></p>
<p>Try a DEMO:</p>
<div style="border: 1px solid #ff0000; width: 200px;">
<div id="demo_box" style="padding: 10px; overflow: hidden; width: 200px; max-height: 80px;">
<p>AAAAAAA</p>
<p>BBBBBBBB</p>
<p>CCCCCCC</p>
<p>DDDDDDD</p>
<p>EEEEEEEE</p>
<p>FFFFFFFF</p></div>
<div id="demo_expand" style="color: #ff0000; cursor: pointer; width: 100px; height: 20px; float: left; text-align: left;">+</div>
<div id="demo_collapse" style="color: #ff0000; cursor: pointer; width: 100px; height: 20px; float: left; text-align: right;">-</div>
</div>
<p><script type="text/javascript"><!--
document.write(unescape("%3Cscript src='http://www.bugzappy.com/js/jquery.js' type='text/javascript'%3E%3C/script%3E"));
document.write(unescape("%3Cscript src='http://www.bugzappy.com/wp-content/uploads/2009/04/jqueryexpandbox.js' type='text/javascript'%3E%3C/script%3E"));
// --></script><br />
<script type="text/javascript"><!--
var $j = jQuery.noConflict();
$j("#demo_box").expandBox('#demo_expand', '#demo_collapse', {shrunkHeight: 80, expandHeightInc: 40, expandText: 'expand', expandDelay: 100, shrinkText: 'collapse'});
// --></script></p>
<p></p>
<p>The CODE for the above example:</p>
<pre>
&lt;div style="border: 1px solid #ff0000; width: 200px;">
&lt;div id="demo_box" style="padding: 10px; overflow: hidden; width: 200px; max-height: 80px;">
&lt;p>AAAAAAA$lt;/p>
&lt;p>BBBBBBBB$lt;/p>
&lt;p>CCCCCCC$lt;/p>
&lt;p>DDDDDDD$lt;/p>
&lt;p>EEEEEEEE$lt;/p>
&lt;p>FFFFFFFF$lt;/p>
&lt;/div>
&lt;div id="demo_expand"
    style="color: #ff0000; cursor: pointer; width: 100px; height: 20px; float: left; text-align: left;">+&lt;/div>
&lt;div id="demo_collapse"
    style="color: #ff0000; cursor: pointer; width: 100px; height: 20px; float: left; text-align: right;">-&lt;/div>
&lt;/div>

&lt;script type="text/javascript">&lt;!--
document.write(unescape("%3Cscript src='http://www.bugzappy.com/js/jquery.js' type='text/javascript'%3E%3C/script%3E"));
document.write(unescape("%3Cscript src='http://www.bugzappy.com/wp-content/uploads/2009/04/jqueryexpandbox.js' type='text/javascript'%3E%3C/script%3E"));
// -->&lt;/script>

&lt;script type="text/javascript">&lt;!--
var $j = jQuery.noConflict();
$j("#demo_box").expandBox('#demo_expand', '#demo_collapse', {shrunkHeight: 80, expandHeightInc: 40, expandText: 'expand', expandDelay: 100, shrinkText: 'collapse'});
// -->&lt;/script>
</pre>
<p></p>
<p>DOWNLOAD: <span style="color: #551a8b; text-decoration: underline;"><a href="http://www.bugzappy.com/wp-content/uploads/2009/04/jqueryexpandbox.js">jquery.expandbox</a>.js</span></p>
<p></p>
<p>A bit of documentation coming later.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bugzappy.com/2009/04/02/expandbox-jquery-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
