<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>cms4j</title>
	<atom:link href="http://cms4j.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://cms4j.wordpress.com</link>
	<description>yawb - yet another wordpress blog</description>
	<lastBuildDate>Wed, 24 Aug 2011 20:20:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='cms4j.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>cms4j</title>
		<link>http://cms4j.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://cms4j.wordpress.com/osd.xml" title="cms4j" />
	<atom:link rel='hub' href='http://cms4j.wordpress.com/?pushpress=hub'/>
		<item>
		<title>using Array methods over frame borders?</title>
		<link>http://cms4j.wordpress.com/2009/07/23/using-array-methods-over-frame-borders/</link>
		<comments>http://cms4j.wordpress.com/2009/07/23/using-array-methods-over-frame-borders/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 18:29:36 +0000</pubDate>
		<dc:creator>cms4j</dc:creator>
				<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://cms4j.wordpress.com/?p=71</guid>
		<description><![CDATA[The other day i tried to join a javascript Array to pass it over to another page within my application. I stumbled upon the error message in IE7 Unexpected call to method or property access. Ok, it must have got something to do with a method that is used on an array: link += "&#38;elements=" [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cms4j.wordpress.com&amp;blog=5494236&amp;post=71&amp;subd=cms4j&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The other day i tried to join a javascript Array to pass it over to another page within my application.<br />
I stumbled upon the error message in IE7</p>
<blockquote><p>
Unexpected call to method or property access.
</p></blockquote>
<p>Ok, it must have got something to do with a method that is used on an array:</p>
<p><code><br />
link += "&amp;elements=" + parent.frames[1].arrElements.join("|");<br />
</code></p>
<p>After consulting Google i found several pages, and this is the most targeting link: <a href="http://groups.google.com/group/comp.lang.javascript/msg/1afbcb0da1cd4aef">myArray instanceof Array fails after passing to a different page</a>.<br />
Douglas Crockford states: </p>
<blockquote><p>
When you say &#8216;Array&#8217;, you are talking about &#8216;window.Array&#8217;. &#8216;window&#8217; is the<br />
browser&#8217;s context object, and you get one per page (or frame). All of the arrays<br />
created within a context will have their constructor property set to<br />
&#8216;window.Array&#8217;.
</p></blockquote>
<p>So i assume this to be the reason why my call <b>.join()</b> fails.</p>
<p>So what would be a workaround?</p>
<p>I had to create a local array and copy all the elements from the original array into my local array and join this one to the link:</p>
<p><code><br />
var joinHelper = "";<br />
for (var i = 0, j = arrElements.length; i &lt; j; i++) {<br />
	joinHelper += arrElements[i];<br />
	if (i &lt; j) {<br />
		joinHelper += &quot;|&quot;;<br />
	}<br />
}<br />
link += &quot;&amp;elements=&quot; + joinHelper;    // instead of parent.frames[1].arrElements.join(&quot;|&quot;);<br />
</code></p>
<p>&#8230; time to call it a day &#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cms4j.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cms4j.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cms4j.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cms4j.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cms4j.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cms4j.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cms4j.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cms4j.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cms4j.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cms4j.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cms4j.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cms4j.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cms4j.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cms4j.wordpress.com/71/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cms4j.wordpress.com&amp;blog=5494236&amp;post=71&amp;subd=cms4j&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cms4j.wordpress.com/2009/07/23/using-array-methods-over-frame-borders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/63c85d773b6e5ab92245c292abfda6c2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cms4j</media:title>
		</media:content>
	</item>
		<item>
		<title>l10n 1.0</title>
		<link>http://cms4j.wordpress.com/2009/07/14/l10n-1-0/</link>
		<comments>http://cms4j.wordpress.com/2009/07/14/l10n-1-0/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 13:56:20 +0000</pubDate>
		<dc:creator>cms4j</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://cms4j.wordpress.com/?p=65</guid>
		<description><![CDATA[I finally finished to upload a new version of my jQuery Plugin l10n. This is the first official release with version 1.0 as it now supports all html elements that can be localized. E.g. Images can now be localized and also Drop Down Lists and of course all the other elements that can contain texts.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cms4j.wordpress.com&amp;blog=5494236&amp;post=65&amp;subd=cms4j&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I finally finished to upload a new version of my jQuery Plugin <a href="http://cms4j.wordpress.com/l10n-a-jquery-plugin/">l10n</a>. This is the first official release with version 1.0 as it now supports all html elements that can be localized. E.g. Images can now be localized and also Drop Down Lists and of course all the other elements that can contain texts.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cms4j.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cms4j.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cms4j.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cms4j.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cms4j.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cms4j.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cms4j.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cms4j.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cms4j.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cms4j.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cms4j.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cms4j.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cms4j.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cms4j.wordpress.com/65/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cms4j.wordpress.com&amp;blog=5494236&amp;post=65&amp;subd=cms4j&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cms4j.wordpress.com/2009/07/14/l10n-1-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/63c85d773b6e5ab92245c292abfda6c2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cms4j</media:title>
		</media:content>
	</item>
		<item>
		<title>slider with not linear values</title>
		<link>http://cms4j.wordpress.com/2009/07/03/slider-with-not-linear-values/</link>
		<comments>http://cms4j.wordpress.com/2009/07/03/slider-with-not-linear-values/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 17:52:24 +0000</pubDate>
		<dc:creator>cms4j</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://cms4j.wordpress.com/?p=61</guid>
		<description><![CDATA[Yesterday i was searching for a solution to have the jQuery slider having values that are not linear from min to max but with different &#8220;linearities&#8221;. I found a solution that fitted my needs here: http://stackoverflow.com/questions/967372/jquery-slider-how-to-make-step-size-change/967565#967565<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cms4j.wordpress.com&amp;blog=5494236&amp;post=61&amp;subd=cms4j&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Yesterday i was searching for a solution to have the jQuery slider having values that are not linear from min to max but with different &#8220;linearities&#8221;. I found a solution that fitted my needs here:</p>
<p>http://stackoverflow.com/questions/967372/jquery-slider-how-to-make-step-size-change/967565#967565</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cms4j.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cms4j.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cms4j.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cms4j.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cms4j.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cms4j.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cms4j.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cms4j.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cms4j.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cms4j.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cms4j.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cms4j.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cms4j.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cms4j.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cms4j.wordpress.com&amp;blog=5494236&amp;post=61&amp;subd=cms4j&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cms4j.wordpress.com/2009/07/03/slider-with-not-linear-values/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/63c85d773b6e5ab92245c292abfda6c2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cms4j</media:title>
		</media:content>
	</item>
		<item>
		<title>isNullOrEmpty</title>
		<link>http://cms4j.wordpress.com/2009/06/30/isnullorempty/</link>
		<comments>http://cms4j.wordpress.com/2009/06/30/isnullorempty/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 11:12:51 +0000</pubDate>
		<dc:creator>cms4j</dc:creator>
				<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://cms4j.wordpress.com/?p=53</guid>
		<description><![CDATA[Coding a lot in JavaScript i often have to check if an object is undefined, null or at least an empty string. So it would be great to have a method like in C# string.isNullOrEmpty() This is my solution for JavaScript: window.isNullOrEmpty = function(obj) { return (obj === '' &#124;&#124; obj === null &#124;&#124; obj [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cms4j.wordpress.com&amp;blog=5494236&amp;post=53&amp;subd=cms4j&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Coding a lot in JavaScript i often have to check if an object is</p>
<p><em>undefined</em>, <em>null</em> or at least an <em>empty string</em>.</p>
<p>So it would be great to have a method like in C#</p>
<p><code>string.isNullOrEmpty()</code></p>
<p>This is my solution for JavaScript:<br />
<code><br />
window.isNullOrEmpty = function(obj) {<br />
    return (obj === '' || obj === null || obj === undefined)<br />
}<br />
</code></p>
<p>And the best of it: it does not only work on strings like in C#, it works for every object.</p>
<p>Attatching the method to the <strong>window</strong> object makes it purely available from everywhere.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cms4j.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cms4j.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cms4j.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cms4j.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cms4j.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cms4j.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cms4j.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cms4j.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cms4j.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cms4j.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cms4j.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cms4j.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cms4j.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cms4j.wordpress.com/53/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cms4j.wordpress.com&amp;blog=5494236&amp;post=53&amp;subd=cms4j&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cms4j.wordpress.com/2009/06/30/isnullorempty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/63c85d773b6e5ab92245c292abfda6c2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cms4j</media:title>
		</media:content>
	</item>
		<item>
		<title>&lt;title /&gt; vs &lt;title&gt;&lt;/title&gt;</title>
		<link>http://cms4j.wordpress.com/2009/05/29/title-vs-titletitle/</link>
		<comments>http://cms4j.wordpress.com/2009/05/29/title-vs-titletitle/#comments</comments>
		<pubDate>Fri, 29 May 2009 20:44:35 +0000</pubDate>
		<dc:creator>cms4j</dc:creator>
				<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://cms4j.wordpress.com/?p=43</guid>
		<description><![CDATA[The other day i was hunting a very strange bug that occured in IE8. I&#8217; ve got a frameset where i have a otherframe.location.href = somelink; This leads to a blank screen in the browser window where i am even not able to view the source code. Every time i clicked the right mouse button [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cms4j.wordpress.com&amp;blog=5494236&amp;post=43&amp;subd=cms4j&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The other day i was hunting a very strange bug that occured in IE8. I&#8217; ve got a frameset where i have  a<br />
<code>otherframe.location.href = somelink;</code><br />
This leads to a blank screen in the browser window where i am even not able to view the source code. Every time i clicked the right mouse button i got an<br />
&#8220;Access denied&#8221;<br />
on that very line.<br />
I googled a lot but did not find the solution. So i used as many alert(); boxes as possible until i finally found out that the title-tag seemed to be not well formed. I don&#8217;t have an idea why<br />
<code>&lt;title /&gt;</code><br />
is not well formed, but IE taught me that. So i will use<br />
<code>&lt;title&gt;&lt;/title&gt;</code><br />
in the future&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cms4j.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cms4j.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cms4j.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cms4j.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cms4j.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cms4j.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cms4j.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cms4j.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cms4j.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cms4j.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cms4j.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cms4j.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cms4j.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cms4j.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cms4j.wordpress.com&amp;blog=5494236&amp;post=43&amp;subd=cms4j&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cms4j.wordpress.com/2009/05/29/title-vs-titletitle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/63c85d773b6e5ab92245c292abfda6c2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cms4j</media:title>
		</media:content>
	</item>
		<item>
		<title>uploaded l10n &#8211; my first jQuery plugin</title>
		<link>http://cms4j.wordpress.com/2008/11/12/uploaded-l10n-my-first-jquery-plugin/</link>
		<comments>http://cms4j.wordpress.com/2008/11/12/uploaded-l10n-my-first-jquery-plugin/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 22:09:22 +0000</pubDate>
		<dc:creator>cms4j</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://cms4j.wordpress.com/?p=31</guid>
		<description><![CDATA[finally i managed to upload my first jQuery plugin l10n It&#8217;s a nice bit of code handling all the localization stuff that you need for your web application as we use JSON objects for storing all the strings. What is more, the JSON objects can be generated by converting &#8220;.NET *.resx&#8221; resource files with XML2JSON. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cms4j.wordpress.com&amp;blog=5494236&amp;post=31&amp;subd=cms4j&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>finally i managed to upload my first <a href="http://jquery.com">jQuery</a> plugin <a href="http://cms4j.wordpress.com/l10n-a-jquery-plugin/">l10n</a> It&#8217;s a nice bit of code handling all the localization stuff that you need for your web application as we use JSON objects for storing all the strings. What is more, the JSON objects can be generated by converting &#8220;.NET *.resx&#8221; resource files with XML2JSON. We are about to use it in our company for a new product.<br />
This one should not be the last, as developing plugins for jQuery is that simple and very effective.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cms4j.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cms4j.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cms4j.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cms4j.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cms4j.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cms4j.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cms4j.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cms4j.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cms4j.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cms4j.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cms4j.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cms4j.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cms4j.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cms4j.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cms4j.wordpress.com&amp;blog=5494236&amp;post=31&amp;subd=cms4j&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cms4j.wordpress.com/2008/11/12/uploaded-l10n-my-first-jquery-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/63c85d773b6e5ab92245c292abfda6c2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cms4j</media:title>
		</media:content>
	</item>
		<item>
		<title>where do you want to go today</title>
		<link>http://cms4j.wordpress.com/2008/11/12/where-do-you-want-to-go-today/</link>
		<comments>http://cms4j.wordpress.com/2008/11/12/where-do-you-want-to-go-today/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 15:31:10 +0000</pubDate>
		<dc:creator>cms4j</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://cms4j.wordpress.com/?p=3</guid>
		<description><![CDATA[having this bit of a slogan in mind i decided to join the blogging people. Why? I was longing for some space where i can put up my plugin for jQuery and decided to do this here. This will follow later that evening. So long&#8230;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cms4j.wordpress.com&amp;blog=5494236&amp;post=3&amp;subd=cms4j&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>having this bit of a slogan in mind i decided to join the blogging people. Why? I was longing for some space where i can put up my plugin for <a href="http://jquery.com">jQuery</a> and decided to do this here. This will follow later that evening. So long&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cms4j.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cms4j.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cms4j.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cms4j.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cms4j.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cms4j.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cms4j.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cms4j.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cms4j.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cms4j.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cms4j.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cms4j.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cms4j.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cms4j.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cms4j.wordpress.com&amp;blog=5494236&amp;post=3&amp;subd=cms4j&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cms4j.wordpress.com/2008/11/12/where-do-you-want-to-go-today/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/63c85d773b6e5ab92245c292abfda6c2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cms4j</media:title>
		</media:content>
	</item>
	</channel>
</rss>
