<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss 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" version="2.0">

<channel>
	<title>rdworth.org</title>
	
	<link>http://rdworth.org/blog</link>
	<description>Richard D. Worth's tech blog</description>
	<pubDate>Sat, 11 Oct 2008 05:41:18 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/rdworth" type="application/rss+xml" /><item>
		<title>jQuery, Plugins, and jQuery UI</title>
		<link>http://rdworth.org/blog/2008/10/jquery-plugins-and-jquery-ui/</link>
		<comments>http://rdworth.org/blog/2008/10/jquery-plugins-and-jquery-ui/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 05:41:18 +0000</pubDate>
		<dc:creator>Richard D. Worth</dc:creator>
		
		<category><![CDATA[jQuery]]></category>

		<category><![CDATA[jQuery UI]]></category>

		<guid isPermaLink="false">http://rdworth.org/blog/?p=23</guid>
		<description><![CDATA[Someone asked on the jQuery UI Mailing list tonight about the difference between jQuery, jQuery UI, and Plugins. Here was my response.
&#8220;jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development.&#8221;
http://jquery.com/
&#8220;jQuery offers a mechanism for adding in methods and functionality, bundled as [...]]]></description>
			<content:encoded><![CDATA[<p>Someone asked on the jQuery UI Mailing list tonight about <a href="http://groups.google.com/group/jquery-ui/browse_thread/thread/b472a9fa0f460b8c">the difference between jQuery, jQuery UI, and Plugins</a>. Here was my response.</p>
<blockquote><p>&#8220;jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development.&#8221;<br />
<a href="http://jquery.com/">http://jquery.com/</a></p></blockquote>
<blockquote><p>&#8220;jQuery offers a mechanism for adding in methods and functionality, bundled as plugins.&#8221;<br />
<a href="http://docs.jquery.com/Plugins/Authoring">http://docs.jquery.com/Plugins/Authoring</a></p></blockquote>
<blockquote><p>&#8220;jQuery UI provides abstractions for low-level interaction and high-level, themeable widgets, built on top of the jQuery JavaScript Library, that you can use to build highly interactive web applications.&#8221;<br />
<a href="http://ui.jquery.com/"> http://ui.jquery.com/ </a></p></blockquote>
<p><strong>jQuery</strong> ( <a href="http://jquery.com/">http://jquery.com/</a> )</p>
<p>So jQuery is a concise and minimal javascript framework. It covers the basics - DOM Manipulation, Events, Ajax, Animations. It does so quite nicely, and is <a href="http://docs.jquery.com/Sites_Using_jQuery">rather popular</a>.</p>
<p><strong>Plugins</strong> ( <a href="http://plugins.jquery.com/">http://plugins.jquery.com/</a> )</p>
<p>jQuery is extensible. Anyone can write code that gives jQuery more than just the basics functionality. These are packaged as plugins. In addition to including</p>
<p>jquery.js</p>
<p>you might also include a plugin file (that you or someone else wrote), such as</p>
<p>jquery.foo.js</p>
<p>This would typically add a function .foo() which you could call on any jQuery object as if that were a built-in basic capability of jQuery. You can find a huge number of plugins on</p>
<p><a href="http://plugins.jquery.com/">http://plugins.jquery.com/ </a></p>
<p>as well as <a href="http://www.google.com/search?q=jquery+plugin">elsewhere on the internet</a>. People write and release jQuery plugins all the time, because they&#8217;re easy to write and share. They cover things such as menus, rich media (audio/video), data handling, cookies, browser detection, layout, form validation. Anything people want, really.</p>
<p>When a plugin becomes so ubiquitous that nearly everyone is including it on their page with jquery.js, <a href="http://groups.google.com/group/jquery-en/msg/0ca254effd0acd00">it can be a candidate for inclusion in jQuery core</a>. But only where it is in demand, makes sense, and still keeps the library lightweight, easy to use, etc. That said, jQuery core will never grow beyond it&#8217;s fundamentals (hence the name, core). Enter jQuery UI.</p>
<p><strong>jQuery UI</strong> ( <a href="http://ui.jquery.com/">http://ui.jquery.com/</a> )</p>
<p>A couple years back there was a set of quite popular jQuery plugins bundled in a package called <a href="http://www.eyecon.ro/interface/">Interface</a>, written by Stefan Petre. These offered really great interactions, like drag-and-drop, selecting, sorting, resizing; widgets like tooltips, autocomplete, accordion. The 1.2 release of jQuery had some API changes that would&#8217;ve required changes to Interface, for it to be compatible, but Interface was never updated.</p>
<p>jQuery UI (started by Paul Bakaus) picked up where Interface left off. Many people are interested in a complete package/library of jQuery plugins with a common/consistent API, complete documentation, testing in all major browsers, with which they can build rich web interfaces and/or RIAs (Rich Internet Applications). Oh yeah, and they should work well together, be easy to use, accessible, extensible, and themeable. Whew.</p>
<p>jQuery UI is a sister-project of jQuery. The 1.0 release of jQuery UI was September 2007. Version 1.5 was released in June 2008. You can get a pretty full history (including what went in to each release, and how it matured) on the <a href="http://jquery.com/blog/">jQuery Blog</a>. The latest stable release is 1.5.2 and includes</p>
<p>Interactions<br />
- Draggables (drag)<br />
- Droppables (and drop)<br />
- Resizables<br />
- Selectables<br />
- Sortables</p>
<p>Widgets<br />
- Accordion<br />
- Datepicker<br />
- Dialog<br />
- Slider<br />
- Tabs</p>
<p>Effects<br />
- blind, bounce, clip, drop down/up/left/right, explode, fold, highlight, pulsate, puff, scale, shake, slide down/up/left/right, transfer<br />
- Color animations<br />
- Class animations (addClass/removeClass/toggleClass w/Interval)</p>
<p>Some other notes:</p>
<p><a href="http://docs.jquery.com/UI">There is documentation for all of jQuery UI</a>, including how to theme each plugin</p>
<p><a href="http://rdworth.org/blog/2008/08/jquery-ui-now-in-googles-ajax-libraries-api/">jQuery UI is hosted on google&#8217;s ajax libraries api </a></p>
<p>jQuery UI has full theming support for all plugins. The jQuery UI website even has an application for getting started building a theme, called <a href="http://themeroller.com/">ThemeRoller</a>. It gives you a live preview of your theme applied to all the widgets as you create it.</p>
<p>The jQuery UI website has a <a href="http://ui.jquery.com/download_builder/">Download Builder</a> which allows you to pick and choose just the components you want, and wraps them up (with a bow, er min/pack compression options) in one file.</p>
<p>There are more plugins in the works such as:<br />
- colorpicker<br />
- autocomplete<br />
- progressbar<br />
- spinner<br />
- menu<br />
- toolbar<br />
- panels<br />
- splitters<br />
- tree<br />
- uploader<br />
- grid<br />
- tooltips</p>
<p>You can follow jQuery and jQuery UI on twitter and/or identica:</p>
<p>jQuery<br />
<a href="http://twitter.com/jquery">http://twitter.com/jquery</a><br />
<a href="http://identi.ca/jquery">http://identi.ca/jquery</a></p>
<p>jQuery UI<br />
<a href="http://twitter.com/jqueryui">http://twitter.com/jqueryui</a><br />
<a href="http://identi.ca/jqueryui">http://identi.ca/jqueryui</a></p>
<p>(both sites use jQuery <img src='http://rdworth.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p>
<p><strong>Licensing</strong></p>
<p>jQuery UI (like jQuery) is dual-licensed <a href="http://jquery-ui.googlecode.com/svn/trunk/MIT-LICENSE.txt">MIT</a> and <a href="http://jquery-ui.googlecode.com/svn/trunk/GPL-LICENSE.txt">GPL</a>. Meaning you can pick the one that suits you.</p>
<p><strong>Support Groups / Mailing Lists</strong></p>
<p>jQuery has two:</p>
<p>jQuery Main list, for people using jQuery: <a href="http://groups.google.com/group/jquery-en">http://groups.google.com/group/jquery-en</a><br />
jQuery Dev list, for the development of jQuery itself: <a href="http://groups.google.com/group/jquery-dev ">http://groups.google.com/group/jquery-dev </a></p>
<p>and jQuery UI has two as well:</p>
<p>jQuery UI Main list, for people using jQuery UI: <a href="http://groups.google.com/group/jquery-ui">http://groups.google.com/group/jquery-ui</a><br />
jQuery UI Dev list, for the development of jQuery UI itself: <a href="http://groups.google.com/group/jquery-ui-dev">http://groups.google.com/group/jquery-ui-dev</a></p>
<img src="http://feeds.feedburner.com/~r/rdworth/~4/417504846" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://rdworth.org/blog/2008/10/jquery-plugins-and-jquery-ui/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Conference Talks in September: jQuery and jQuery UI</title>
		<link>http://rdworth.org/blog/2008/08/jquery-ui-conference-talks/</link>
		<comments>http://rdworth.org/blog/2008/08/jquery-ui-conference-talks/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 12:38:46 +0000</pubDate>
		<dc:creator>Richard D. Worth</dc:creator>
		
		<category><![CDATA[Conferences]]></category>

		<category><![CDATA[jQuery]]></category>

		<category><![CDATA[jQuery Camp]]></category>

		<category><![CDATA[jQuery UI]]></category>

		<category><![CDATA[JQC2008]]></category>

		<category><![CDATA[RWE2008]]></category>

		<category><![CDATA[TAE2008]]></category>

		<guid isPermaLink="false">http://rdworth.org/blog/?p=22</guid>
		<description><![CDATA[September is full. I&#8217;m giving five talks next month on jQuery and jQuery UI. Here&#8217;s my schedule:
Rich Web Experience - East (Washington, D.C. Area) Tag: rwe2008
September 4-6, 2008
Talk 1: jQuery
Talk 2: jQuery UI: Rich Interactivity Simplified
Rich Web Experience - West (San Jose, CA) Tag: rwe2008
September 8-10, 2008
Talk 1: jQuery
Talk 2: jQuery UI: Rich Interactivity Simplified
Library [...]]]></description>
			<content:encoded><![CDATA[<p>September is full. I&#8217;m giving five talks next month on <a href="http://jquery.com/">jQuery</a> and <a href="http://ui.jquery.com/">jQuery UI</a>. Here&#8217;s my schedule:</p>
<p><strong><a href="http://www.therichwebexperience.com/conference/washing_dc/index.html">Rich Web Experience - East</a></strong> (<em>Washington, D.C. Area</em>) Tag: <a href="http://whoisi.com/e/rwe2008">rwe2008</a><br />
<em>September 4-6, 2008</em><br />
Talk 1: <a href="http://www.therichwebexperience.com/speaker_topic_view.jsp?topicId=1467">jQuery</a><br />
Talk 2: <a href="http://www.therichwebexperience.com/speaker_topic_view.jsp?topicId=1468">jQuery UI: Rich Interactivity Simplified</a></p>
<p><strong><a href="http://www.therichwebexperience.com/conference/san_jose/2008/09/index.html">Rich Web Experience - West</a></strong> (<em>San Jose, CA</em>) Tag: <a href="http://whoisi.com/e/rwe2008">rwe2008</a><br />
<em>September 8-10, 2008</em><br />
Talk 1: <a href="http://www.therichwebexperience.com/speaker_topic_view.jsp?topicId=1467">jQuery</a><br />
Talk 2: <a href="http://www.therichwebexperience.com/speaker_topic_view.jsp?topicId=1468">jQuery UI: Rich Interactivity Simplified</a></p>
<p><strong><a href="http://www.loc.gov/">Library of Congress</a></strong> (<em>Washington, D.C.</em>)<br />
<em>September 18, 2008</em><br />
A team of developers has invited me to come speak with them. Apparently they&#8217;re fans of jQuery (no surprise there) and want to learn more. Awesome. Thanks <a href="http://whoisi.com/p/3496">Ed Summers</a>.</p>
<p><strong><a href="http://events.jquery.com/">jQuery Conference 2008</a></strong> (<em>Boston, MA</em>) Tag: <a href="http://whoisi.com/e/jquerycon2008">jquerycon2008</a><br />
<em>September 28, 2008</em><br />
Last year we had a one-day <a href="http://docs.jquery.com/JQueryCamp07">jQuery Camp</a> right after TAE. This year we&#8217;ve graduated to a full conference :). I&#8217;ll be doing an introductory talk on jQuery UI.</p>
<p><strong><a href="http://ajaxexperience.techtarget.com/">The Ajax Experience 2008</a></strong> (<em>Boston, MA</em>) Tag: <a href="http://whoisi.com/e/tae2008">tae2008</a><br />
<em>September 29-Oct 1, 2008</em><br />
Talk: <a href="http://ajaxexperience.techtarget.com/east/html/effects.html#RWorthJUI">Rich Interactivity, Simplified, with jQuery U</a><br />
This will be my second <a href="http://rdworth.org/blog/category/my-ajax-experience/">Ajax Experience</a>. I had an absolutely awesome time last year meeting almost the entire <a href="http://docs.jquery.com/Contributors">jQuery Team</a> and <a href="http://ui.jquery.com/about">jQuery UI Team</a>.</p>
<p>If you&#8217;ll be at any of these, I&#8217;d love to meet up with you. Contact me on identi.ca @<a href="http://identi.ca/rdworth">rdworth</a>.</p>
<img src="http://feeds.feedburner.com/~r/rdworth/~4/365640105" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://rdworth.org/blog/2008/08/jquery-ui-conference-talks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>jQuery UI now in Google’s AJAX Libraries API</title>
		<link>http://rdworth.org/blog/2008/08/jquery-ui-now-in-googles-ajax-libraries-api/</link>
		<comments>http://rdworth.org/blog/2008/08/jquery-ui-now-in-googles-ajax-libraries-api/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 10:54:05 +0000</pubDate>
		<dc:creator>Richard D. Worth</dc:creator>
		
		<category><![CDATA[jQuery]]></category>

		<category><![CDATA[jQuery UI]]></category>

		<category><![CDATA[cdn]]></category>

		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://rdworth.org/blog/?p=21</guid>
		<description><![CDATA[Google announced recently that jQuery UI is the latest addition to their hosted AJAX Libraries API:
jQuery UI &#8230; is now hosted on our AJAX Libraries API! As usual, your users will get a performance boost when you use JQuery UI through our API, so get started by checking out the docs.
Now you can put one [...]]]></description>
			<content:encoded><![CDATA[<p>Google announced recently that <a href="http://googleajaxsearchapi.blogspot.com/2008/08/ajax-libraries-api-update.html">jQuery UI is the latest addition to their hosted AJAX Libraries API</a>:</p>
<blockquote cite="http://googleajaxsearchapi.blogspot.com/2008/08/ajax-libraries-api-update.html"><p>jQuery UI &#8230; is now hosted on our AJAX Libraries API! As usual, your users will get a performance boost when you use JQuery UI through our API, so get started by checking out the docs.</p></blockquote>
<p>Now you can put one script tag on any page and benefit from cache, min, gzip, and google&#8217;s <a href="http://en.wikipedia.org/wiki/Content_Delivery_Network">CDN</a>:</p>
<p><code>&lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.5.2/jquery-ui.min.js"&gt;&lt;/script&gt;</code></p>
<p>and you&#8217;ve got all jQuery UI plugins and effects. Beauty.</p>
<img src="http://feeds.feedburner.com/~r/rdworth/~4/363793173" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://rdworth.org/blog/2008/08/jquery-ui-now-in-googles-ajax-libraries-api/feed/</wfw:commentRss>
		</item>
		<item>
		<title>jQuery UI 1.5 Final Release</title>
		<link>http://rdworth.org/blog/2008/06/jquery-ui-15-final-release/</link>
		<comments>http://rdworth.org/blog/2008/06/jquery-ui-15-final-release/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 10:03:30 +0000</pubDate>
		<dc:creator>Richard D. Worth</dc:creator>
		
		<category><![CDATA[jQuery]]></category>

		<category><![CDATA[jQuery UI]]></category>

		<guid isPermaLink="false">http://rdworth.org/blog/?p=18</guid>
		<description><![CDATA[jQuery UI 1.5
I&#8217;m pleased to say that the jQuery UI 1.5 release is out. Here&#8217;s the full blog post for all the info:
jQuery UI v1.5 Released, Focus on Consistent API and Effects
There&#8217;s a lot there, so I won&#8217;t repeat it all here. However, I do want to mention on of my favorite parts of this [...]]]></description>
			<content:encoded><![CDATA[<h2>jQuery UI 1.5</h2>
<p>I&#8217;m pleased to say that the <a href="http://ui.jquery.com/">jQuery UI</a> 1.5 release is out. Here&#8217;s the full blog post for all the info:</p>
<p><a href="http://jquery.com/blog/2008/06/09/jquery-ui-v15-released-focus-on-consistent-api-and-effects/">jQuery UI v1.5 Released, Focus on Consistent API and Effects</a></p>
<p>There&#8217;s a lot there, so I won&#8217;t repeat it all here. However, I do want to mention on of my favorite parts of this release:</p>
<h2>ThemeRoller</h2>
<p><a href='http://rdworth.org/blog/wp-content/uploads/2008/06/rollerlogo_white.png'><img src="http://rdworth.org/blog/wp-content/uploads/2008/06/rollerlogo_white.png" alt="ThemeRoller" title="rollerlogo_white" width="198" height="204" class="aligncenter size-medium wp-image-19" /></a></p>
<p>Wow! Give a hand to <a href="http://www.filamentgroup.com/">Filament Group</a> for creating <a href="http://themeroller.com/">ThemeRoller.com</a>. Now you can create a custom jQuery UI theme including colors, textures, hover effects, to match any site or app. They&#8217;ve got an <a href="http://www.filamentgroup.com/lab/introducing_themeroller_design_download_custom_themes_for_jquery_ui/">extensive writeup on their awesome work</a>, and they&#8217;ve even got guidelines on how to write jQuery UI plugins so that they&#8217;re ThemeRoller-ready.</p>
<h2>Thank You</h2>
<p>Finally, thanks to all who helped with tests, demos, documentation, feedback, criticism, and encouragement. Keep it coming.</p>
<img src="http://feeds.feedburner.com/~r/rdworth/~4/307910477" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://rdworth.org/blog/2008/06/jquery-ui-15-final-release/feed/</wfw:commentRss>
		</item>
		<item>
		<title>jQuery UI Sprint A Huge Success</title>
		<link>http://rdworth.org/blog/2008/03/jquery-ui-sprint-a-huge-success/</link>
		<comments>http://rdworth.org/blog/2008/03/jquery-ui-sprint-a-huge-success/#comments</comments>
		<pubDate>Mon, 17 Mar 2008 14:01:51 +0000</pubDate>
		<dc:creator>Richard D. Worth</dc:creator>
		
		<category><![CDATA[jQuery]]></category>

		<category><![CDATA[jQuery UI]]></category>

		<category><![CDATA[sprint]]></category>

		<guid isPermaLink="false">http://rdworth.org/blog/2008/03/jquery-ui-sprint-a-huge-success/</guid>
		<description><![CDATA[The jQuery UI sprint this last weekend was great. In all we had over 35 participants and got a lot of good stuff done.
We worked on demos to showcase all the UI plugins, opened and closed a bunch of tickets, reviewed and updated the documentation, and continued writing unit tests for each UI plugin. We [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://docs.jquery.com/JQuerySprint">jQuery UI sprint</a> this last weekend was great. In all we had over 35 participants and got a lot of good stuff done.</p>
<p>We worked on demos to showcase all the UI plugins, opened and closed a bunch of tickets, reviewed and updated the documentation, and continued writing unit tests for each UI plugin. We also had some crucial discussions about API consistency, and simplified some of the code dependencies.</p>
<p>We&#8217;re not quite ready for the final 1.5 release, but this sprint was a great push toward that goal. I was pleased to see that we attracted some new contributers. They made a real contribution, and we were happy to have some fresh perspective on how we&#8217;re doing, and how we can do better. They key now is to keep this good momentum going.</p>
<p>Paul will be doing a more complete summary post on the <a href="http://jquery.com/blog/">jQuery blog</a> later today. But I wanted to at least mention here: Thanks to all who made this sprint a success.</p>
<img src="http://feeds.feedburner.com/~r/rdworth/~4/253011582" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://rdworth.org/blog/2008/03/jquery-ui-sprint-a-huge-success/feed/</wfw:commentRss>
		</item>
		<item>
		<title>jQuery UI Sprint starts tomorrow</title>
		<link>http://rdworth.org/blog/2008/03/jquery-ui-sprint-starts-tomorrow/</link>
		<comments>http://rdworth.org/blog/2008/03/jquery-ui-sprint-starts-tomorrow/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 10:23:06 +0000</pubDate>
		<dc:creator>Richard D. Worth</dc:creator>
		
		<category><![CDATA[jQuery]]></category>

		<category><![CDATA[jQuery UI]]></category>

		<category><![CDATA[sprint]]></category>

		<guid isPermaLink="false">http://rdworth.org/blog/2008/03/jquery-ui-sprint-starts-tomorrow/</guid>
		<description><![CDATA[I announced the first jQuery UI Sprint on the jQuery blog last Friday. It will take place all day tomorrow and Saturday. Here&#8217;s a summary:
The jQuery UI Team is pleased to announce its first Worldwide Sprint, to take place next Friday and Saturday, March 14-15, 2008. Two full days of testing, fixes, documentation, and general [...]]]></description>
			<content:encoded><![CDATA[<p>I announced the first <a href="http://jquery.com/blog/2008/03/07/jquery-ui-worldwide-sprint-march-14-15/">jQuery UI Sprint on the jQuery blog</a> last Friday. It will take place all day tomorrow and Saturday. Here&#8217;s a summary:</p>
<blockquote><p>The jQuery UI Team is pleased to announce its first <a href="http://docs.jquery.com/JQuerySprint">Worldwide Sprint</a>, to take place next Friday and Saturday, March 14-15, 2008. Two full days of testing, fixes, documentation, and general getting-stuff-done. Our goal is to get the jQuery UI 1.5 release (<a href="http://jquery.com/blog/2008/02/08/jquery-123-air-namespacing-and-ui-alpha/">alpha</a>, <a href="http://jquery.com/blog/2008/02/12/jquery-ui-15b-new-api-more-features-huge-performance-boost/">beta</a>) ready for final, and we invite any and all to help. Whether you have an hour, or an afternoon, come and run really fast with us.</p></blockquote>
<p>I&#8217;m really excited about this event. We&#8217;ll have a few team members there to help facilitate, and a lot of new contributors as well. So far there are 22 people signed up to participate. If you want to give UI some love, <a href="http://docs.jquery.com/JQuerySprint">add your name to the list</a>, even if you can&#8217;t be there the whole time. We&#8217;ve got some exciting stuff planned. See you tomorrow.</p>
<img src="http://feeds.feedburner.com/~r/rdworth/~4/250677454" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://rdworth.org/blog/2008/03/jquery-ui-sprint-starts-tomorrow/feed/</wfw:commentRss>
		</item>
		<item>
		<title>jQuery UI 1.5 alpha</title>
		<link>http://rdworth.org/blog/2008/02/jquery-ui-15-alpha/</link>
		<comments>http://rdworth.org/blog/2008/02/jquery-ui-15-alpha/#comments</comments>
		<pubDate>Sat, 09 Feb 2008 11:10:01 +0000</pubDate>
		<dc:creator>Richard D. Worth</dc:creator>
		
		<category><![CDATA[jQuery]]></category>

		<category><![CDATA[jQuery UI]]></category>

		<guid isPermaLink="false">http://rdworth.org/blog/2008/02/jquery-ui-15-alpha/</guid>
		<description><![CDATA[We finally got the jQuery UI 1.5 alpha out, along with jQuery 1.2.3:
jQuery 1.2.3: AIR, Namespacing, and UI Alpha
jQuery UI 1.5 alpha
What a road for UI 1.5. Originally it started as 1.0.1 (just bug fixes) following the 1.0 release in September. Then it grew into 1.1 (a little added functionality, a couple API changes). Neither [...]]]></description>
			<content:encoded><![CDATA[<p>We finally got the jQuery UI 1.5 alpha out, along with jQuery 1.2.3:</p>
<p><a href="http://jquery.com/blog/2008/02/08/jquery-123-air-namespacing-and-ui-alpha/">jQuery 1.2.3: AIR, Namespacing, and UI Alpha</a></p>
<p><strong>jQuery UI 1.5 alpha</strong><br />
What a road for UI 1.5. Originally it started as 1.0.1 (just bug fixes) following the 1.0 release in September. Then it grew into 1.1 (a little added functionality, a couple API changes). Neither of these actually got released. The closest was a fairly quiet 1.0.1a. In the end, there were so many big changes, especially in the API, but also in a couple plugins that were entirely reworked, that it was promoted to 1.5. Here&#8217;s a couple I&#8217;ve been spending a bit of time on:</p>
<p><strong>Selectables</strong><br />
The version of Selectables in the 1.0 release was not what some might call useful. I&#8217;m happy to say this is fixed in 1.5.</p>
<p><strong>Dialog</strong><br />
Dialog has a few fixes (like with multiple dialogs, if you click on one it comes to the top), but the most requested feature (by far) didn&#8217;t quite make it into the alpha: modal option. This will be in the beta. Stay tuned.</p>
<img src="http://feeds.feedburner.com/~r/rdworth/~4/236512474" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://rdworth.org/blog/2008/02/jquery-ui-15-alpha/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dialogs and Theming with jQuery UI</title>
		<link>http://rdworth.org/blog/2008/02/dialogs-and-theming-with-jquery-ui/</link>
		<comments>http://rdworth.org/blog/2008/02/dialogs-and-theming-with-jquery-ui/#comments</comments>
		<pubDate>Thu, 07 Feb 2008 02:58:32 +0000</pubDate>
		<dc:creator>Richard D. Worth</dc:creator>
		
		<category><![CDATA[jQuery]]></category>

		<category><![CDATA[jQuery UI]]></category>

		<guid isPermaLink="false">http://rdworth.org/blog/2008/02/dialogs-and-theming-with-jquery-ui/</guid>
		<description><![CDATA[I had my second jQuery UI Article published on DMXzone today:
Tutorial: Dialogs and Theming with jQuery UI
In this article I&#8217;ll introduce jQuery UI Dialogs. I&#8217;ll also introduce one of the premiere features of jQuery UI: themes, and will show how they can be used to make a consistent and attractive web application. As in my [...]]]></description>
			<content:encoded><![CDATA[<p>I had my second jQuery UI Article published on <a href="http://dmxzone.com/">DMXzone</a> today:</p>
<p>Tutorial: <a href="http://dmxzone.com/ShowDetail.asp?NewsId=14754">Dialogs and Theming with jQuery UI</a></p>
<blockquote><p>In this article I&#8217;ll introduce jQuery UI Dialogs. I&#8217;ll also introduce one of the premiere features of jQuery UI: themes, and will show how they can be used to make a consistent and attractive web application. As in my last article, Drag-and-Drop Shopping Cart with jQuery UI, I&#8217;ll assume a basic familiarity with jQuery (the base of jQuery UI). You should be comfortable with jQuery syntax and basic selectors.</p></blockquote>
<p>See my <a href="http://rdworth.org/blog/2008/01/drag-and-drop-shopping-cart-with-jquery-ui/">earlier post, Drag-and-Drop Shopping Cart with jQuery UI,</a> for more information on DMXzone Premium Content.</p>
<img src="http://feeds.feedburner.com/~r/rdworth/~4/236512477" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://rdworth.org/blog/2008/02/dialogs-and-theming-with-jquery-ui/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Drag-and-Drop Shopping Cart with jQuery UI</title>
		<link>http://rdworth.org/blog/2008/01/drag-and-drop-shopping-cart-with-jquery-ui/</link>
		<comments>http://rdworth.org/blog/2008/01/drag-and-drop-shopping-cart-with-jquery-ui/#comments</comments>
		<pubDate>Thu, 17 Jan 2008 10:45:16 +0000</pubDate>
		<dc:creator>Richard D. Worth</dc:creator>
		
		<category><![CDATA[jQuery]]></category>

		<category><![CDATA[jQuery UI]]></category>

		<guid isPermaLink="false">http://rdworth.org/blog/2008/01/drag-and-drop-shopping-cart-with-jquery-ui/</guid>
		<description><![CDATA[I had my first article published on DMXzone.com yesterday. I&#8217;m going to be writing a couple tutorials a month on there, as well as on DNzone.com. I&#8217;ll mostly be focused on writing jQuery UI tutorials. Check it out:
Tutorial: Drag-and-Drop Shopping Cart with jQuery UI

In this article, I&#8217;ll introduce jQuery UI Drag-and-Drop and show you how [...]]]></description>
			<content:encoded><![CDATA[<p>I had my first article published on <a href="http://dmxzone.com/">DMXzone.com</a> yesterday. I&#8217;m going to be writing a couple tutorials a month on there, as well as on <a href="http://dnzone.com/">DNzone.com</a>. I&#8217;ll mostly be focused on writing jQuery UI tutorials. Check it out:</p>
<p>Tutorial: <a href="http://dmxzone.com/showDetail.asp?TypeId=28&#038;NewsId=14612">Drag-and-Drop Shopping Cart with jQuery UI</a></p>
<blockquote><p>
In this article, I&#8217;ll introduce jQuery UI Drag-and-Drop and show you how with just a few lines of code, you can make a richly interactive shopping cart that is functional and fun to use. To get right into it, I&#8217;m going to assume that you&#8217;re at least familiar with jQuery (the base of jQuery UI). You should have a working (latest) copy of jQuery installed and be comfortable with the jQuery syntax and basic selectors.</p></blockquote>
<p>It&#8217;s published in the Premium Content section, which means it&#8217;s not free. You can either pay a few dollars, or if you like the whole site (lots of great content, as well as an online magazine), they&#8217;ve got annual subscription options for unlimited access.</p>
<p>I&#8217;ve got a few more articles in the works including: dialog, theming, selectables. Leave a comment if you&#8217;ve got other ideas for articles.</p>
<img src="http://feeds.feedburner.com/~r/rdworth/~4/236512478" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://rdworth.org/blog/2008/01/drag-and-drop-shopping-cart-with-jquery-ui/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Rest of My Ajax Experience</title>
		<link>http://rdworth.org/blog/2007/12/the-rest-of-my-ajax-experience/</link>
		<comments>http://rdworth.org/blog/2007/12/the-rest-of-my-ajax-experience/#comments</comments>
		<pubDate>Thu, 20 Dec 2007 12:17:42 +0000</pubDate>
		<dc:creator>Richard D. Worth</dc:creator>
		
		<category><![CDATA[My Ajax Experience]]></category>

		<guid isPermaLink="false">http://rdworth.org/blog/2007/12/the-rest-of-my-ajax-experience/</guid>
		<description><![CDATA[Happy Belated Birthday! That&#8217;s how I feel writing this post. &#8220;I was just making it last longer.&#8221; The rest of my week at The Ajax Experience in Boston was great. So great, in fact that I had absolutely no time to write while I was there (after the zero&#8217;th day). Between talks and in the [...]]]></description>
			<content:encoded><![CDATA[<p>Happy Belated Birthday! That&#8217;s how I feel writing this post. &#8220;I was just making it last longer.&#8221; The rest of my week at <a href="http://ajaxexperience.techtarget.com/">The Ajax Experience</a> in Boston was great. So great, in fact that I had absolutely no time to write while I was there (after the <a href="http://rdworth.org/blog/2007/10/tae-day-0-early-registration-tutorials/">zero&#8217;th day</a>). Between talks and in the evenings I spent lots of time with the jQuery team and others that I was meeting for the first time. It was great.</p>
<p>This started as a huge mega-catch-up-post, but at the rate it was going, it wasn&#8217;t going to be published in time for <em>next year&#8217;s</em> conference! So this&#8217;ll have to do, to unclog my blog:</p>
<p>The conference was excellent. I can&#8217;t recommend it highly enough. I&#8217;m really hoping I can go again next year. It was awesome to meet the rest of the jQuery team (nearly all were there), and other jQuery (and non-jQuery) folks.</p>
<img src="http://feeds.feedburner.com/~r/rdworth/~4/236512479" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://rdworth.org/blog/2007/12/the-rest-of-my-ajax-experience/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
