<?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>Klaus Hartl - Stilbüro</title>
	<atom:link href="http://www.stilbuero.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stilbuero.de</link>
	<description>We are reasonable people.</description>
	<lastBuildDate>Sat, 01 Nov 2008 19:08:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Plazes Acquired By Nokia</title>
		<link>http://www.stilbuero.de/2008/06/23/plazes-acquired-by-nokia/</link>
		<comments>http://www.stilbuero.de/2008/06/23/plazes-acquired-by-nokia/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 10:14:06 +0000</pubDate>
		<dc:creator>Klaus</dc:creator>
				<category><![CDATA[Notebook]]></category>

		<guid isPermaLink="false">http://www.stilbuero.de/2008/06/23/plazes-acquired-by-nokia/</guid>
		<description><![CDATA[Plazes &#8211; the startup which I am working for &#8211; is going to be acquired by Nokia.
Time for some champagne on a monday morning! W000t!!!1!
]]></description>
			<content:encoded><![CDATA[<p><a href="http://plazes.com">Plazes</a> &#8211; the startup which I am working for &#8211; <a href="http://blog.plazes.com/?p=242">is</a> <a href="http://www.techcrunch.com/2008/06/23/breaking-germanys-plazes-acquired-by-nokia/">going</a> <a href="http://summize.com/search?q=plazes">to</a> <a href="http://technorati.com/search/plazes">be</a> <a href="http://radar.oreilly.com/archives/2008/06/nokia-acquires-plazes-ovis-mapping-lbs.html">acquired</a> <a href="http://www.nokia.com/A4136001?newsid=1229894">by</a> <a href="http://nokia.com">Nokia</a>.</p>
<p>Time for some champagne on a monday morning! W000t!!!1!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stilbuero.de/2008/06/23/plazes-acquired-by-nokia/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A quote from Dave Hyatt</title>
		<link>http://www.stilbuero.de/2008/05/07/a-quote-from-dave-hyatt/</link>
		<comments>http://www.stilbuero.de/2008/05/07/a-quote-from-dave-hyatt/#comments</comments>
		<pubDate>Wed, 07 May 2008 11:28:41 +0000</pubDate>
		<dc:creator>Klaus</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.stilbuero.de/2008/05/07/a-quote-from-dave-hyatt/</guid>
		<description><![CDATA[
&#8220;The sad truth about CSS3 selectors is that they really shouldn’t be used at all if you care about page performance. Decorating your markup with classes and ids and matching purely on those while avoiding all uses of sibling, descendant and child selectors will actually make a page perform significantly better in all browsers.&#8221;

(http://www.shauninman.com/archive/2008/05&#8230;)
]]></description>
			<content:encoded><![CDATA[<blockquote cite="http://www.shauninman.com/archive/2008/05/05/css_qualified_selectors#comment_3942">
<p>&#8220;The sad truth about CSS3 selectors is that they really shouldn’t be used at all if you care about page performance. Decorating your markup with classes and ids and matching purely on those while avoiding all uses of sibling, descendant and child selectors will actually make a page perform significantly better in all browsers.&#8221;</p>
</blockquote>
<p>(<a href="http://www.shauninman.com/archive/2008/05/05/css_qualified_selectors#comment_3942">http://www.shauninman.com/archive/2008/05&#8230;</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stilbuero.de/2008/05/07/a-quote-from-dave-hyatt/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>jQuery Delegate plugin &#8211; cross-browser submit/reset event delegation</title>
		<link>http://www.stilbuero.de/2008/04/27/jquery-delegate-plugin-cross-browser-submitreset-event-delegation/</link>
		<comments>http://www.stilbuero.de/2008/04/27/jquery-delegate-plugin-cross-browser-submitreset-event-delegation/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 19:33:37 +0000</pubDate>
		<dc:creator>Klaus</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.stilbuero.de/2008/04/27/jquery-delegate-plugin-cross-browser-submitreset-event-delegation/</guid>
		<description><![CDATA[Dan Webb has written an event delegation plugin the other day (as part of Low Pro for jQuery) &#8211; I really like his solution and as soon as you are working with Ajax page updates a lot you got to love the ease the event delegation technique provides.
There is one major drawback though. In IE [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.danwebb.net/2008/2/8/event-delegation-made-easy-in-jquery">Dan Webb has written an event delegation plugin</a> the other day (as part of Low Pro for jQuery) &#8211; I really like his solution and as soon as you are working with Ajax page updates a lot you got to love the ease the event delegation technique provides.</p>
<p>There is one major drawback though. In <abbr title="Internet Explorer">IE</abbr> submit and reset events do not bubble, thus you cannot use delegation here. Same is true for submit events in Safari 2.</p>
<p>In the upcoming <a href="htp://plazes.com">Plazes</a> delegation for submit/reset events turned out to be a requirement, so I wrote an event delegation plugin based on Dan Webb&#8217;s stuff, in particular on what Yehuda Katz proposed in one of the comments, and added workarounds for IE and Safari, so that you can now use delegation for these events just as you would expect. There were also some issues with using <code>confirm()</code>.</p>
<p>I needed to do that quickly, thus the code could use some optimization (later). </p>
<p>Get it here:<br />
<a href="http://stilbuero.de/jquery/delegate/">http://stilbuero.de/jquery/delegate/</a></p>
<p>I just noticed that Jörn Zaefferer wrote <a href="http://dev.jquery.com/view/trunk/plugins/delegate/jquery.delegate.js">something similar for the focus and blur events</a> and I&#8217;m going to merge the two. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.stilbuero.de/2008/04/27/jquery-delegate-plugin-cross-browser-submitreset-event-delegation/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>A very simple download indicator (the glorious return of the marquee tag)</title>
		<link>http://www.stilbuero.de/2007/10/26/a-very-simple-download-indicator-the-glorious-return-of-the-marquee-tag/</link>
		<comments>http://www.stilbuero.de/2007/10/26/a-very-simple-download-indicator-the-glorious-return-of-the-marquee-tag/#comments</comments>
		<pubDate>Fri, 26 Oct 2007 12:18:24 +0000</pubDate>
		<dc:creator>Klaus</dc:creator>
				<category><![CDATA[Notebook]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.stilbuero.de/2007/10/26/a-very-simple-download-indicator-the-glorious-return-of-the-marquee-tag/</guid>
		<description><![CDATA[&#60;marquee direction="right"&#62;...&#60;/marquee&#62;
Try it ;-)
(Courtesy of Sean Treadway &#8211; thanks for making my day!)
]]></description>
			<content:encoded><![CDATA[<pre><code>&lt;marquee direction="right"&gt;...&lt;/marquee&gt;</code></pre>
<p>Try it ;-)</p>
<p>(Courtesy of <a href="http://sean.treadway.info/">Sean Treadway</a> &#8211; thanks for making my day!)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stilbuero.de/2007/10/26/a-very-simple-download-indicator-the-glorious-return-of-the-marquee-tag/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>jQuery UI Tabs aka Tabs 3</title>
		<link>http://www.stilbuero.de/2007/10/23/jquery-ui-tabs-aka-tabs-3/</link>
		<comments>http://www.stilbuero.de/2007/10/23/jquery-ui-tabs-aka-tabs-3/#comments</comments>
		<pubDate>Tue, 23 Oct 2007 11:46:41 +0000</pubDate>
		<dc:creator>Klaus</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.stilbuero.de/2007/10/23/jquery-ui-tabs-aka-tabs-3/</guid>
		<description><![CDATA[Being a part of the jQuery UI project, UI Tabs aka Tabs 3 has been released the other day.
Until today I have fixed a bunch of bugs that popped up and I hope Tabs 3 is stable now. I&#8217;ve added a couple of frequently requested features but please be aware that the new Tabs require [...]]]></description>
			<content:encoded><![CDATA[<p>Being a part of the <a href="http://ui.jquery.com/">jQuery UI project</a>, UI Tabs aka Tabs 3 has been <a href="http://jquery.com/blog/2007/09/17/jquery-ui-interactions-and-widgets/">released the other day</a>.</p>
<p>Until today I have fixed a bunch of bugs that popped up and I hope Tabs 3 is stable now. I&#8217;ve added a couple of frequently requested features but please be aware that the new Tabs require jQuery 1.2.1 and also that I have left away history support for now. The history plugin itself needs a major overhaul and when that is done I will build it into Tabs again. I have closed down comments on all of the Tabs 2 posts to indicate that this version will not be maintained any longer.</p>
<p>If you&#8217;d like to report a bug, I&#8217;d like to ask to you to <a href="http://dev.jquery.com/newticket">file a ticket</a>. This way it&#8217;s much easier to keep track of bugs and if you post a bug in the comments I will create a ticket anyway.</p>
<p>To be consistent with other UI modules, i.e. to conform to some conventions we set up, <strong>the Tabs API has changed</strong> quite a bit. The <a href="http://docs.jquery.com/UI/Tabs">documentation</a>, which has been moved from the source file to the <a href="http://docs.jquery.com/Main_Page">jQuery documentation Wiki</a> is your friend (and because it&#8217;s a Wiki everybody can help to improve it &#8211; remember I&#8217;m not a native english speaker and documenting code is not always easy for me). I&#8217;ll also write a follow-up post about the most important changes and additions.</p>
<p><a href="/jquery/tabs_3/?PHPSESSID=i0lvish2cb8qnksgb2r0k104g3">A demo is here.</a></p>
<p>Thank you for using Tabs!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stilbuero.de/2007/10/23/jquery-ui-tabs-aka-tabs-3/feed/</wfw:commentRss>
		<slash:comments>276</slash:comments>
		</item>
		<item>
		<title>Tabs Plugin: More flexibility</title>
		<link>http://www.stilbuero.de/2007/05/14/tabs-plugin-more-flexibility/</link>
		<comments>http://www.stilbuero.de/2007/05/14/tabs-plugin-more-flexibility/#comments</comments>
		<pubDate>Mon, 14 May 2007 09:34:33 +0000</pubDate>
		<dc:creator>Klaus</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.stilbuero.de/2007/05/14/tabs-plugin-more-flexibility/</guid>
		<description><![CDATA[Just a short note, I&#8217;ve updated the CSS for the Tabs plugin &#8211; because people did not stop asking &#8211; and tabs have a flexible width and height again. They still maintain a minimal width as well, so that tabs with short titles, as in the demo, will have the same width. Otherwise it would [...]]]></description>
			<content:encoded><![CDATA[<p>Just a short note, I&#8217;ve updated the CSS for the <a href="/jquery/tabs/?PHPSESSID=i0lvish2cb8qnksgb2r0k104g3#fragment-3">Tabs plugin</a> &#8211; because people did not stop asking &#8211; and tabs have a flexible width and height again. They still maintain a minimal width as well, so that tabs with short titles, as in the demo, will have the same width. Otherwise it would look a little cluttered (well, at least to me). I&#8217;m using a <a href="http://alistapart.com/articles/sprites">sprite technique</a> for the different parts of the tab of course, thus only one image needs to be downloaded.</p>
<p>Important to know is that this required <strong>an additional <code>span</code> element</strong> nested in the anchor element of a tab.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stilbuero.de/2007/05/14/tabs-plugin-more-flexibility/feed/</wfw:commentRss>
		<slash:comments>81</slash:comments>
		</item>
		<item>
		<title>Tabs 2.7: Flexibility</title>
		<link>http://www.stilbuero.de/2007/04/07/tabs-27-flexibility/</link>
		<comments>http://www.stilbuero.de/2007/04/07/tabs-27-flexibility/#comments</comments>
		<pubDate>Sat, 07 Apr 2007 20:29:52 +0000</pubDate>
		<dc:creator>Klaus</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.stilbuero.de/2007/04/07/tabs-27-flexibility/</guid>
		<description><![CDATA[I've added a few requested features and fixed some quirks for the <a href="/jquery/tabs/?PHPSESSID=i0lvish2cb8qnksgb2r0k104g3">Tabs plugin</a> recently.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve added a few requested features and fixed some quirks for the <a href="/jquery/tabs/?PHPSESSID=i0lvish2cb8qnksgb2r0k104g3">Tabs plugin</a> recently.</p>
<h3>Increased flexibility</h3>
<p>For a much increased flexibility regarding the <abbr title="HyperText Markup Language">HTML</abbr> structure required for a tab interface you can now add particular classes to the unordered list and the tab containers. If no classes are present, the elements are queried relying on the default structure. The <code>tabStruct</code> option still works but is deprecated and will go away with the next release (Tabs 3).</p>
<p>Say you need a div wrapped around each the unordered list and the containers. Provide the following <abbr>HTML</abbr>:</p>
<pre><code class="html">&lt;div id=&quot;container&quot;&gt;
     &lt;div&gt;
         &lt;ul class=&quot;tabs-nav&quot;&gt;
             &#8230;
         &lt;/ul&gt;
     &lt;/div&gt;
     &lt;div&gt;
         &lt;div id=&quot;fragment-1&quot; class=&quot;tabs-container&quot;&gt;
             &#8230;
         &lt;/div&gt;
         &lt;div id=&quot;fragment-2&quot; class=&quot;tabs-container&quot;&gt;
             &#8230;
         &lt;/div&gt;
         &lt;div id=&quot;fragment-3&quot; class=&quot;tabs-container&quot;&gt;
             &#8230;
         &lt;/div&gt;
     &lt;/div&gt;
&lt;/div&gt;</code></pre>
<p>That also means that you can easily switch the order of containers and the list:</p>
<pre><code class="html">&lt;div id=&quot;container&quot;&gt;
     &lt;div id=&quot;fragment-1&quot;&gt;
         &#8230;
     &lt;/div&gt;
     &lt;div id=&quot;fragment-2&quot;&gt;
         &#8230;
     &lt;/div&gt;
     &lt;div id=&quot;fragment-3&quot;&gt;
         &#8230;
     &lt;/div&gt;
     &lt;ul class=&quot;tabs-nav&quot;&gt;
          &#8230;
     &lt;/ul&gt;
&lt;/div&gt;</code></pre>
<p>As long as you attach these classes to the proper elements, you can go crazy with your <abbr>HTML</abbr>. The class names are even configurable via option. If the default structure is used, adding the class names does no harm but it is not required. They are of course required for the look of the tabs, but they are attached by the plugin if not present. The underlying (default) <abbr>HTML</abbr> becomes even more unobtrusive that way and it also becomes much easier to add fallback styles for the case of JavaScript being disabled.</p>
<h3>Specify active tab by class</h3>
<p>Instead of specifying the active tab when initializing tabs you can now also simply add the class to the list element representing the desired tab, like:</p>
<pre><code class="html">&lt;li class=&quot;tabs-selected&quot;&gt;</code></pre>
<p>Please note that a given fragment identifier/hash in the <abbr title="Uniform Resource Locator">URL</abbr> will take precedence and the class will be removed if the active tab doesn&#8217;t match. Here&#8217;s how the active tab gets computed: fragment identifier overrules class overrules active tab given as parameter in the initialization.</p>
<h3>onClick enhanced</h3>
<p>Switching tabs is now canceled if the onClick callback returns false. This is useful for instance if proceeding to the next tab requires form validation before.</p>
<h3>Some more changes</h3>
<ul>
<li>
<p>Triggering/Enabling/Disabling tabs can also be done via id instead of an index:</p>
<pre><code class="javascript">$('#tabs').triggerTab(1);</code></pre>
<p>is the same as</p>
<pre><code class="javascript">$('#tabs').triggerTab('#tab-1');</code></pre>
</li>
<li>Fixed a bug (duplicate ids) occuring when multiple Ajax tabs containers are included in the same page. Remote tabs are now numbered consecutively.</li>
<li>There&#8217;s a new option <code>hashPrefix</code> to define a string that is used as base for constructing the id of a remote tab, such as &#8220;#remote-tab-1&#8243;.</li>
<li><a href="/jquery/tabs/?PHPSESSID=i0lvish2cb8qnksgb2r0k104g3">Finally tabs are looking better&#8230;</a></li>
<li>I&#8217;ve fixed a few little quirks in <abbr title="Internet Explorer">IE</abbr> introduced with the Ajax support. Along with that goes an update for the <a href="/jquery/history/?PHPSESSID=i0lvish2cb8qnksgb2r0k104g3">History plugin</a> where I&#8217;ve fixed a minor bug that occured both in <abbr>IE</abbr> and Safari.</li>
</ul>
<p>I consider this the last maintenance release for the Tabs plugin. After I&#8217;ve tackled Thickbox Reloaded I&#8217;m going to rewrite Tabs for Tabs 3, which will allow mixed static/Ajax tabs, easy creating and removing tabs, mouseover tabs&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stilbuero.de/2007/04/07/tabs-27-flexibility/feed/</wfw:commentRss>
		<slash:comments>73</slash:comments>
		</item>
		<item>
		<title>Rock &#8216;n Roll!</title>
		<link>http://www.stilbuero.de/2007/04/03/rock-n-roll/</link>
		<comments>http://www.stilbuero.de/2007/04/03/rock-n-roll/#comments</comments>
		<pubDate>Tue, 03 Apr 2007 12:48:19 +0000</pubDate>
		<dc:creator>Klaus</dc:creator>
				<category><![CDATA[Notebook]]></category>

		<guid isPermaLink="false">http://www.stilbuero.de/2007/04/03/rock-n-roll/</guid>
		<description><![CDATA[Rock &#8216;n Roll! You are 4.31 % mainstream!

What are you?
]]></description>
			<content:encoded><![CDATA[<blockquote cite="http://mainstream.freevicente.com/?user=carhartl"><p><a href="http://mainstream.freevicente.com/?user=carhartl">Rock &#8216;n Roll! You are 4.31 % mainstream!</a></p>
</blockquote>
<p><a href="http://mainstream.freevicente.com">What are you?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stilbuero.de/2007/04/03/rock-n-roll/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Tabs plugin update: Support for (unobtrusive) Ajax</title>
		<link>http://www.stilbuero.de/2007/02/05/tabs-plugin-update-support-for-unobtrusive-ajax/</link>
		<comments>http://www.stilbuero.de/2007/02/05/tabs-plugin-update-support-for-unobtrusive-ajax/#comments</comments>
		<pubDate>Mon, 05 Feb 2007 17:00:12 +0000</pubDate>
		<dc:creator>Klaus</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.stilbuero.de/2007/02/05/tabs-plugin-update-support-for-unobtrusive-ajax/</guid>
		<description><![CDATA[I have updated the Tabs plugin the other day. It now supports loading tab
content via Ajax. As one could have expected I did that in an unobtrusive manner.
The HTML you need is slightly different from the one that is used for static tabs: A list of links pointing to existing ressources (from where the content [...]]]></description>
			<content:encoded><![CDATA[<p>I have updated the Tabs plugin the other day. It now supports loading tab<br />
content via Ajax. As one could have expected I did that in an unobtrusive manner.</p>
<p>The <abbr title="HyperText Markup Language">HTML</abbr> you need is slightly different from <a href="/2006/05/13/accessible-unobtrusive-javascript-tabs-with-jquery/?PHPSESSID=i0lvish2cb8qnksgb2r0k104g3">the one that is used for static tabs</a>: A list of links pointing to existing ressources (from where the content gets loaded) and no additional containers at all (unobtrusive!). They&#8217;re going to be created on the fly:</p>
<pre><code class="html">&lt;div id=&quot;container&quot;&gt;
     &lt;ul&gt;
         &lt;li&gt;&lt;a href=&quot;ahah_1.html&quot;&gt;Content 1&lt;/a&gt;&lt;/li&gt;
         &lt;li&gt;&lt;a href=&quot;ahah_2.html&quot;&gt;Content 2&lt;/a&gt;&lt;/li&gt;
         &lt;li&gt;&lt;a href=&quot;ahah_3.html&quot;&gt;Content 3&lt;/a&gt;&lt;/li&gt;
     &lt;/ul&gt;
&lt;/div&gt;</code></pre>
<p>Initialize the tabs interface with the <code class="javascript">remote</code> option set to <code class="javascript">true</code>:</p>
<pre><code class="javascript">$('#container').tabs({remote: true});</code></pre>
<p>Obviously this will degrade gracefully &#8211; the links, e.g. the content, will still be accessible with JavaScript disabled.</p>
<p>All other options and history support should be totally unaffected by that.</p>
<p>There&#8217;s another option: While the tab content is being loaded a little spinner left to the tab title text is shown (which you will hardly see on the <a href="/jquery/tabs/?PHPSESSID=i0lvish2cb8qnksgb2r0k104g3">demo</a>, because it&#8217;s loading too fast). Just like in Firefox for example. This is controlled by a <abbr title="Cascading Style Sheets">CSS</abbr> class, which you can change:</p>
<pre><code class="javascript">$('#container').tabs({remote: true, loadingClass: 'progress'});</code></pre>
<p>If you don&#8217;t want to show a spinner at all just remove the rule</p>
<pre><code class="javascript">.anchors .tabs-selected .tabs-loading {
     ...
}</code></pre>
<p>from the style sheet.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stilbuero.de/2007/02/05/tabs-plugin-update-support-for-unobtrusive-ajax/feed/</wfw:commentRss>
		<slash:comments>148</slash:comments>
		</item>
		<item>
		<title>New kids on the jQuery block</title>
		<link>http://www.stilbuero.de/2007/02/03/new-kids-on-the-jquery-block/</link>
		<comments>http://www.stilbuero.de/2007/02/03/new-kids-on-the-jquery-block/#comments</comments>
		<pubDate>Sat, 03 Feb 2007 15:20:27 +0000</pubDate>
		<dc:creator>Klaus</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Notebook]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.stilbuero.de/2007/02/03/new-kids-on-the-jquery-block/</guid>
		<description><![CDATA[Sweet! I am an official member of the jQuery team since yesterday.
This is pretty exciting and I&#8217;m looking forward to bring in my capabilities to an already strong team!
]]></description>
			<content:encoded><![CDATA[<p>Sweet! <a href="http://jquery.com/blog/2007/02/02/new-jquery-project-team-members/">I am an official member of the jQuery team since yesterday.</a></p>
<p>This is pretty exciting and I&#8217;m looking forward to bring in my capabilities to an already strong team!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stilbuero.de/2007/02/03/new-kids-on-the-jquery-block/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>
