<?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>Ajax Bestiary &#187; Widgets</title>
	<atom:link href="http://www.ajaxbestiary.com/tag/widgets/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ajaxbestiary.com</link>
	<description>AJAX Development, News, Techniques &#38; More</description>
	<lastBuildDate>Sat, 19 Jun 2010 13:43:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Getting and setting values for jQuery widgets</title>
		<link>http://www.ajaxbestiary.com/2009/12/11/getting-and-setting-values-for-jquery-widgets/</link>
		<comments>http://www.ajaxbestiary.com/2009/12/11/getting-and-setting-values-for-jquery-widgets/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 22:30:34 +0000</pubDate>
		<dc:creator>Dave Mahon</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Widget]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Widgets]]></category>

		<guid isPermaLink="false">http://www.ajaxbestiary.com/?p=397</guid>
		<description><![CDATA[

If you come from an OOP background you’re likely used to defining class variables like this:


class MyClass &#123;
   var internalValue1;
   var internalValue2;
   function constructor&#40;&#41; &#123;  … &#125;
&#125;


The values which are to be stored in your object are simple, straightforward, likely to be typed, and the compiler will detect [...]]]></description>
			<content:encoded><![CDATA[
<!-- google_ad_section_start -->
<p>If you come from an OOP background you’re likely used to defining class variables like this:</p>
<p><code></p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #003366; font-weight: bold;">class</span> MyClass <span style="color: #009900;">&#123;</span>
   <span style="color: #003366; font-weight: bold;">var</span> internalValue1<span style="color: #339933;">;</span>
   <span style="color: #003366; font-weight: bold;">var</span> internalValue2<span style="color: #339933;">;</span>
   <span style="color: #003366; font-weight: bold;">function</span> constructor<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>  … <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p></code></p>
<p>The values which are to be stored in your object are simple, straightforward, likely to be typed, and the compiler will detect typos in the variable names. JavaScript, as a loosely types language which treats its objects more like collections than discrete objects, can’t really offer us those protections. Conversely, that also means that we have a great deal of flexibility.</p>
<p>In essence, we can dynamically subclass our objects, which you have to admit is a neat trick.</p>
<p>So, for jQuery.UI widgets, the variables stored within our widget are not defined until we assign them. The act of assignment defines the variable name, which can then be called upon at will.</p>
<p>Assignment is simply:</p>
<p><code></p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #000066; font-weight: bold;">this</span>._setData<span style="color: #009900;">&#40;</span>‘variablename’<span style="color: #339933;">,</span> variablevalue<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p></code></p>
<p>Retrieval of this value is similarly straightforward:</p>
<p><code></p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #000066; font-weight: bold;">this</span>._getData<span style="color: #009900;">&#40;</span>‘variablename’<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p></code></p>
<p>This does mean that the old problem of misnamed variables is alive and well. It also means that you need to be prepared to handle an undefined response to the _getData call.</p>
<p><img src="http://www.ajaxbestiary.com/?voyeur=1"></p>
<!-- google_ad_section_end -->
]]></content:encoded>
			<wfw:commentRss>http://www.ajaxbestiary.com/2009/12/11/getting-and-setting-values-for-jquery-widgets/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Taking The Web To The Desktop Part 3 Widgets</title>
		<link>http://www.ajaxbestiary.com/2008/01/08/taking-the-web-to-the-desktop-part-3-widgets/</link>
		<comments>http://www.ajaxbestiary.com/2008/01/08/taking-the-web-to-the-desktop-part-3-widgets/#comments</comments>
		<pubDate>Tue, 08 Jan 2008 14:02:59 +0000</pubDate>
		<dc:creator>Don Albrecht</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[Widget]]></category>
		<category><![CDATA[Desktop Integration]]></category>
		<category><![CDATA[Widgets]]></category>

		<guid isPermaLink="false">http://www.ajaxbestiary.com/2008/01/08/taking-the-web-to-the-desktop-part-3-widgets/</guid>
		<description><![CDATA[

If you haven&#8217;t realized it yet, widgets are here to stay and definitely represent what is currently the most ubiquitous way in which the web has been brought to the desktop.  Google Desktop&#8217;s Gadgets, Windows Sidebar, OSX&#8217;s Dashboard, Opera and the venerable Yahoo Widgets (previously konfabulator) all bring tiny, self contained web pages into [...]]]></description>
			<content:encoded><![CDATA[
<!-- google_ad_section_start -->
<p>If you haven&#8217;t realized it yet, widgets are here to stay and definitely represent what is currently the most ubiquitous way in which the web has been brought to the desktop.  Google Desktop&#8217;s Gadgets, Windows Sidebar, OSX&#8217;s Dashboard, Opera and the venerable Yahoo Widgets (previously konfabulator) all bring tiny, self contained web pages into the users desktop space.  For most people, this is the first thing that comes to mind when you mention taking the web to the desktop.</p>
<p>Widgets, however, are a very small piece of the puzzle.  While they overcome some of the limitations of the web by placing your site front and center inside the users normal computing environment and provide some level of escape from the omnipresent security sandbox, widgets just don&#8217;t provide much that transcends the traditional web environment.</p>
<p>Widgets do have a role to play in the emerging web ecosystem.  They are a lightweight means of integration between sites and they do provide useful tools for the user.  Unfortunately, while they do provide a level of convenience, they can also provide a pretty severe level of annoyance to users.  Luckily, they are very easy for users to uninstall and users vote with their mice removing any widgets they deem too annoying.</p>
<p>So where do widgets fit in the hybrid web ecosystem? I&#8217;m not really sure.  They are definitely a motivating force behind the creation of several robust api&#8217;s for enabling the integration of disparate platforms and sites.  They can also do a great job of providing alternative light weight interfaces for traditional web sites by putting underused tools closer to the daily user experience.</p>
<p>In my mind, I can&#8217;t really rule them out for many of my projects.  They&#8217;re kind of like the gravy at a holiday meal.  Even if the turkey is as moist as a swamp in June, you still make it because someone may want it and it isn&#8217;t that much more work once you&#8217;ve gone to the trouble of cooking the bird.</p>
<p>I&#8217;m curious, how are you using Widgets in your projects?</p>
<p><img src="http://www.ajaxbestiary.com/?voyeur=1"></p>
<!-- google_ad_section_end -->
]]></content:encoded>
			<wfw:commentRss>http://www.ajaxbestiary.com/2008/01/08/taking-the-web-to-the-desktop-part-3-widgets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Slick, Scrolling Panels with jQuery &amp; Coda Slider</title>
		<link>http://www.ajaxbestiary.com/2007/10/23/create-slick-scrolling-panels-with-jquery-coda-slider/</link>
		<comments>http://www.ajaxbestiary.com/2007/10/23/create-slick-scrolling-panels-with-jquery-coda-slider/#comments</comments>
		<pubDate>Tue, 23 Oct 2007 12:16:51 +0000</pubDate>
		<dc:creator>Don Albrecht</dc:creator>
				<category><![CDATA[Widget]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Widgets]]></category>

		<guid isPermaLink="false">http://www.ajaxbestiary.com/2007/10/23/create-slick-scrolling-panels-with-jquery-coda-slider/</guid>
		<description><![CDATA[

 Coda Slider is a slick, sliding panel widget plugin for jQuery.&#xA0; It smoothly scrolls between a series of dynamically created tabs and provides a slick, circular navigation.

Some Features:
Clean and Valid XHTML Strict
Circular Navigation
Dynamically Created Tab Set
Multiple Sliders Can Exist On One Page
Cross Browser
Navigation is queued to prevent sudden jumps.

Some Drawbacks,

Text not selectable in Firefox [...]]]></description>
			<content:encoded><![CDATA[
<!-- google_ad_section_start -->
<p><a href="http://www.ajaxbestiary.com/wp-content/uploads/2007/10/jquery-coda-slider.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="235" alt="jquery coda slider" src="http://www.ajaxbestiary.com/wp-content/uploads/2007/10/jquery-coda-slider-thumb.jpg" width="520" border="0" /></a> Coda Slider is a slick, sliding panel widget plugin for jQuery.&#xA0; It smoothly scrolls between a series of dynamically created tabs and provides a slick, circular navigation.</p>
<ul>
<li>Some Features:</li>
<li>Clean and Valid XHTML Strict</li>
<li>Circular Navigation</li>
<li>Dynamically Created Tab Set</li>
<li>Multiple Sliders Can Exist On One Page</li>
<li>Cross Browser</li>
<li>Navigation is queued to prevent sudden jumps.</li>
</ul>
<p><font color="#000000">Some Drawbacks,</font></p>
<ul>
<li><font color="#000000">Text not selectable in Firefox 2 PC</font></li>
<li><font color="#000000">Not Possible to Hyperlink to Selected Tabs / Anchor Support</font></li>
</ul>
<p><font color="#000000">Get It Online Here:</font></p>
<p><a title="http://www.ndoherty.com/demos/coda-slider/" href="http://www.ndoherty.com/demos/coda-slider/">http://www.ndoherty.com/demos/coda-slider/</a></p>
<p>Read the Blog Post:</p>
<p><a title="http://www.ndoherty.com/blog/2007/09/15/introducing-coda-slider/" href="http://www.ndoherty.com/blog/2007/09/15/introducing-coda-slider/">http://www.ndoherty.com/blog/2007/09/15/introducing-coda-slider/</a></p>
<p><img src="http://www.ajaxbestiary.com/?voyeur=1"></p>
<!-- google_ad_section_end -->
]]></content:encoded>
			<wfw:commentRss>http://www.ajaxbestiary.com/2007/10/23/create-slick-scrolling-panels-with-jquery-coda-slider/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>An Ajax Image Gallery That Doesn&#8217;t Break the Back Button: BackBox</title>
		<link>http://www.ajaxbestiary.com/2007/10/22/an-ajax-image-gallery-that-doesnt-break-the-back-button-backbox/</link>
		<comments>http://www.ajaxbestiary.com/2007/10/22/an-ajax-image-gallery-that-doesnt-break-the-back-button-backbox/#comments</comments>
		<pubDate>Mon, 22 Oct 2007 16:50:33 +0000</pubDate>
		<dc:creator>Don Albrecht</dc:creator>
				<category><![CDATA[Rico]]></category>
		<category><![CDATA[Scriptaculous]]></category>
		<category><![CDATA[Widgets]]></category>

		<guid isPermaLink="false">http://www.ajaxbestiary.com/2007/10/22/an-ajax-image-gallery-that-doesnt-break-the-back-button-backbox/</guid>
		<description><![CDATA[

Here&#8217;s a handy take on the lightbox image gallery that preserves the browsers back button.
The Back button closes the gallery.
Get it here:
http://www.cloversigns.co.uk/backbox/backbox.html


]]></description>
			<content:encoded><![CDATA[
<!-- google_ad_section_start -->
<p>Here&#8217;s a handy take on the lightbox image gallery that preserves the browsers back button.</p>
<p>The Back button closes the gallery.</p>
<p>Get it here:</p>
<p><a href="http://www.cloversigns.co.uk/backbox/backbox.html">http://www.cloversigns.co.uk/backbox/backbox.html</a></p>
<p><img src="http://www.ajaxbestiary.com/?voyeur=1"></p>
<!-- google_ad_section_end -->
]]></content:encoded>
			<wfw:commentRss>http://www.ajaxbestiary.com/2007/10/22/an-ajax-image-gallery-that-doesnt-break-the-back-button-backbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Attach Elements To The Viewport With Clientside&#8217;s Element.Pin Mootools Plugin</title>
		<link>http://www.ajaxbestiary.com/2007/10/20/attach-elements-to-the-viewport-with-clientsides-elementpin-mootools-plugin/</link>
		<comments>http://www.ajaxbestiary.com/2007/10/20/attach-elements-to-the-viewport-with-clientsides-elementpin-mootools-plugin/#comments</comments>
		<pubDate>Sat, 20 Oct 2007 21:40:22 +0000</pubDate>
		<dc:creator>Don Albrecht</dc:creator>
				<category><![CDATA[mootools]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Widgets]]></category>

		<guid isPermaLink="false">http://www.ajaxbestiary.com/2007/10/20/attach-elements-to-the-viewport-with-clientsides-elementpin-mootools-plugin/</guid>
		<description><![CDATA[

 Here&#8217;s a handy plugin to attach elements to view port so they don&#8217;t scroll with the page.&#xA0; Scripts for both pinning and unpinning are available.&#xA0; 
To pin:
$(&#8216;fxtarget&#8217;).pin();
To unpin:
$(&#8216;fxtarget).unpin();
You can get it online from clientside here:
http://clientside.cnet.com/code-snippets/visual-effects/new-elementpin/


]]></description>
			<content:encoded><![CDATA[
<!-- google_ad_section_start -->
<p><a href="http://www.ajaxbestiary.com/wp-content/uploads/2007/10/mootools-pin.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="196" alt="mootools pin" src="http://www.ajaxbestiary.com/wp-content/uploads/2007/10/mootools-pin-thumb.jpg" width="489" border="0" /></a> Here&#8217;s a handy plugin to attach elements to view port so they don&#8217;t scroll with the page.&#xA0; Scripts for both pinning and unpinning are available.&#xA0; </p>
<p>To pin:</p>
<p>$(&#8216;fxtarget&#8217;).pin();</p>
<p>To unpin:</p>
<p>$(&#8216;fxtarget).unpin();</p>
<p>You can get it online from clientside here:</p>
<p><a title="http://clientside.cnet.com/code-snippets/visual-effects/new-elementpin/" href="http://clientside.cnet.com/code-snippets/visual-effects/new-elementpin/">http://clientside.cnet.com/code-snippets/visual-effects/new-elementpin/</a></p>
<p><img src="http://www.ajaxbestiary.com/?voyeur=1"></p>
<!-- google_ad_section_end -->
]]></content:encoded>
			<wfw:commentRss>http://www.ajaxbestiary.com/2007/10/20/attach-elements-to-the-viewport-with-clientsides-elementpin-mootools-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple, Client Side Table Pagination from Frequency Decoder</title>
		<link>http://www.ajaxbestiary.com/2007/10/19/simple-client-side-table-pagination-from-frequency-decoder/</link>
		<comments>http://www.ajaxbestiary.com/2007/10/19/simple-client-side-table-pagination-from-frequency-decoder/#comments</comments>
		<pubDate>Fri, 19 Oct 2007 19:16:00 +0000</pubDate>
		<dc:creator>Don Albrecht</dc:creator>
				<category><![CDATA[table]]></category>
		<category><![CDATA[Widgets]]></category>

		<guid isPermaLink="false">http://www.ajaxbestiary.com/2007/10/19/simple-client-side-table-pagination-from-frequency-decoder/</guid>
		<description><![CDATA[

Frequency Decoder has released a handy client side pagination script that could be great for your next project handling larger data sets.
Some Features 

Unobtrusive and nameSpace friendly
Supports the pagination of multiple tables on the same page
No JavaScript knowledge required, all parameters are passed within the table’s className
Two pagination lists created for each table, the first positioned [...]]]></description>
			<content:encoded><![CDATA[
<!-- google_ad_section_start -->
<p>Frequency Decoder has released a handy client side pagination script that could be great for your next project handling larger data sets.</p>
<p><strong>Some Features </strong></p>
<ul class="linklist">
<li>Unobtrusive and nameSpace friendly</li>
<li>Supports the pagination of multiple tables on the same page</li>
<li>No JavaScript knowledge required, all parameters are passed within the table’s className</li>
<li>Two pagination lists created for each table, the first positioned above the table and the other positioned below</li>
<li>If required, the pagination lists can be positioned within a wrapper element of your choice</li>
<li>A JavaScript callback function can be declared, called immediately after a new page is shown by the script</li>
<li>It’s keyboard accessible</li>
</ul>
<p>Check it out online here:</p>
<p><a href="http://www.frequency-decoder.com/2007/10/19/client-side-table-pagination-script">http://www.frequency-decoder.com/2007/10/19/client-side-table-pagination-script</a></p>
<p><img src="http://www.ajaxbestiary.com/?voyeur=1"></p>
<!-- google_ad_section_end -->
]]></content:encoded>
			<wfw:commentRss>http://www.ajaxbestiary.com/2007/10/19/simple-client-side-table-pagination-from-frequency-decoder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dojo Grid Lands in Trunk For Oct 31&#8217;st Release.</title>
		<link>http://www.ajaxbestiary.com/2007/10/18/dojo-grid-lands-in-trunk-for-oct-31st-release/</link>
		<comments>http://www.ajaxbestiary.com/2007/10/18/dojo-grid-lands-in-trunk-for-oct-31st-release/#comments</comments>
		<pubDate>Thu, 18 Oct 2007 15:49:19 +0000</pubDate>
		<dc:creator>Don Albrecht</dc:creator>
				<category><![CDATA[Dojo]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[table]]></category>
		<category><![CDATA[Widgets]]></category>

		<guid isPermaLink="false">http://www.ajaxbestiary.com/2007/10/18/dojo-grid-lands-in-trunk-for-oct-31st-release/</guid>
		<description><![CDATA[

Dojo Grid has landed in the DojoX trunk for Dojo&#8217;s 1.0 release scheduled for the 31st of this month.
I&#8217;m eagerly anticipating Dojo 1.0.  It&#8217;s been a long time coming, but this is shaping up to be an excellent and capable release.
Read More on the SitePen Release


]]></description>
			<content:encoded><![CDATA[
<!-- google_ad_section_start -->
<p>Dojo Grid has landed in the DojoX trunk for Dojo&#8217;s 1.0 release scheduled for the 31st of this month.<img src="http://www.ajaxbestiary.com/wp-content/uploads/2007/10/picture-3.png" alt="Dojo Grid Status 1" /></p>
<p>I&#8217;m eagerly anticipating Dojo 1.0.  It&#8217;s been a long time coming, but this is shaping up to be an excellent and capable release.</p>
<p>Read More on the <a href="http://www.sitepen.com/blog/2007/10/13/dojo-grid-update/">SitePen Release</a></p>
<p><img src="http://www.ajaxbestiary.com/?voyeur=1"></p>
<!-- google_ad_section_end -->
]]></content:encoded>
			<wfw:commentRss>http://www.ajaxbestiary.com/2007/10/18/dojo-grid-lands-in-trunk-for-oct-31st-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Slick and Classic Fancy Menu from Dev Thought</title>
		<link>http://www.ajaxbestiary.com/2007/10/17/50/</link>
		<comments>http://www.ajaxbestiary.com/2007/10/17/50/#comments</comments>
		<pubDate>Wed, 17 Oct 2007 17:00:07 +0000</pubDate>
		<dc:creator>Don Albrecht</dc:creator>
				<category><![CDATA[mootools]]></category>
		<category><![CDATA[Widgets]]></category>

		<guid isPermaLink="false">http://www.ajaxbestiary.com/2007/10/17/50/</guid>
		<description><![CDATA[

It&#8217;s been around all over and it&#8217;s not exactly a spring chicken, but it should probably be here to.  The excellent Dev thought Fancy Menu is a visually powerful &#38; fun menu system built in mootools.

One Note I&#8217;d like to add, however, is how well written &#38; useful the writeup on the menu is.
Check [...]]]></description>
			<content:encoded><![CDATA[
<!-- google_ad_section_start -->
<p>It&#8217;s been around all over and it&#8217;s not exactly a spring chicken, but it should probably be here to.  The excellent Dev thought Fancy Menu is a visually powerful &amp; fun menu system built in mootools.</p>
<p><img src="http://www.ajaxbestiary.com/wp-content/uploads/2007/09/devthoughtfancymenu.png" alt="Fancy Menu" /></p>
<p>One Note I&#8217;d like to add, however, is how well written &amp; useful the writeup on the menu is.</p>
<p>Check it out at: <a href="http://devthought.com/cssjavascript-true-power-fancy-menu/">http://devthought.com/cssjavascript-true-power-fancy-menu/ </a></p>
<p><img src="http://www.ajaxbestiary.com/?voyeur=1"></p>
<!-- google_ad_section_end -->
]]></content:encoded>
			<wfw:commentRss>http://www.ajaxbestiary.com/2007/10/17/50/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prototype Transparent Message</title>
		<link>http://www.ajaxbestiary.com/2007/10/16/prototype-transparent-message/</link>
		<comments>http://www.ajaxbestiary.com/2007/10/16/prototype-transparent-message/#comments</comments>
		<pubDate>Tue, 16 Oct 2007 16:37:57 +0000</pubDate>
		<dc:creator>Don Albrecht</dc:creator>
				<category><![CDATA[prototype]]></category>
		<category><![CDATA[Scriptaculous]]></category>
		<category><![CDATA[Widgets]]></category>

		<guid isPermaLink="false">http://www.ajaxbestiary.com/2007/10/16/prototype-transparent-message/</guid>
		<description><![CDATA[


Here&#8217;s a simple and adaptable Notification widget for Prototype / Scripataculous development.
Features:

Customizable Look &#38; Feel
Exists independent of Page Layout
Easy rails integration with helpers.
Can be used on any event.
Ruby helper available.

Get it Here:
http://transparent-message.xilinus.com/ 


]]></description>
			<content:encoded><![CDATA[
<!-- google_ad_section_start -->
<p><img src="http://www.ajaxbestiary.com/wp-content/uploads/2007/10/prototransmess.png" alt="Prototype Transparent Message" /></p>
<p>Here&#8217;s a simple and adaptable Notification widget for Prototype / Scripataculous development.</p>
<p>Features:</p>
<ul>
<li>Customizable Look &amp; Feel</li>
<li>Exists independent of Page Layout</li>
<li>Easy rails integration with helpers.</li>
<li>Can be used on any event.</li>
<li>Ruby helper available.</li>
</ul>
<p>Get it Here:<br />
<a href="http://transparent-message.xilinus.com/">http://transparent-message.xilinus.com/ </a></p>
<p><img src="http://www.ajaxbestiary.com/?voyeur=1"></p>
<!-- google_ad_section_end -->
]]></content:encoded>
			<wfw:commentRss>http://www.ajaxbestiary.com/2007/10/16/prototype-transparent-message/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Started with jQuery UI</title>
		<link>http://www.ajaxbestiary.com/2007/10/15/getting-started-with-jquery-ui/</link>
		<comments>http://www.ajaxbestiary.com/2007/10/15/getting-started-with-jquery-ui/#comments</comments>
		<pubDate>Mon, 15 Oct 2007 16:50:21 +0000</pubDate>
		<dc:creator>Don Albrecht</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Widgets]]></category>

		<guid isPermaLink="false">http://www.ajaxbestiary.com/2007/10/15/getting-started-with-jquery-ui/</guid>
		<description><![CDATA[

jQuery UI was released last month and provides an official UI library for jQuery development.  Included in the release:

 Mouse Interaction

 Draggables
 Droppables
 Sortables
 Selectables
 Resizables


 User Interface Extensions

 Accordion
 Calendar
 Dialog
 Slider
 Table
 Tabs


 Effects

Shadow
Magnifier



Although many modules aren&#8217;t ready for primetime use yet.  I would advise trying to integrate the official packages [...]]]></description>
			<content:encoded><![CDATA[
<!-- google_ad_section_start -->
<p>jQuery UI was released last month and provides an official UI library for jQuery development.  Included in the release:</p>
<ul>
<li> Mouse Interaction
<ul>
<li> <a href="http://docs.jquery.com/UI/Draggables" title="UI/Draggables">Draggables</a></li>
<li> <a href="http://docs.jquery.com/UI/Droppables" title="UI/Droppables">Droppables</a></li>
<li> <a href="http://docs.jquery.com/UI/Sortables" title="UI/Sortables">Sortables</a></li>
<li> <a href="http://docs.jquery.com/UI/Selectables" title="UI/Selectables">Selectables</a></li>
<li> <a href="http://docs.jquery.com/UI/Resizables" title="UI/Resizables">Resizables</a></li>
</ul>
</li>
<li> User Interface Extensions
<ul>
<li> <a href="http://docs.jquery.com/UI/Accordion" title="UI/Accordion">Accordion</a></li>
<li> <a href="http://docs.jquery.com/Plugins/Calendar" title="Plugins/Calendar">Calendar</a></li>
<li> <a href="http://docs.jquery.com/UI/Dialog" title="UI/Dialog">Dialog</a></li>
<li> <a href="http://docs.jquery.com/UI/Slider" title="UI/Slider">Slider</a></li>
<li> <a href="http://docs.jquery.com/Plugins/Tablesorter" title="Plugins/Tablesorter">Table</a></li>
<li> <a href="http://docs.jquery.com/UI/Tabs" title="UI/Tabs">Tabs</a></li>
</ul>
</li>
<li> Effects
<ul>
<li><a href="http://docs.jquery.com/UI/Shadow" title="UI/Shadow">Shadow</a></li>
<li><a href="http://docs.jquery.com/UI/Magnifier" title="UI/Magnifier">Magnifier</a></li>
</ul>
</li>
</ul>
<p>Although many modules aren&#8217;t ready for primetime use yet.  I would advise trying to integrate the official packages in your next jQuery project.  Over the next few days we will be exploring each of these elements in more depth.</p>
<p><img src="http://www.ajaxbestiary.com/?voyeur=1"></p>
<!-- google_ad_section_end -->
]]></content:encoded>
			<wfw:commentRss>http://www.ajaxbestiary.com/2007/10/15/getting-started-with-jquery-ui/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
