<?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>the fancy part of the web &#187; jQuery</title>
	<atom:link href="http://blog.tolleiv.de/tag/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.tolleiv.de</link>
	<description>is elsewhere - this is just about all sorts of web related work with a small factor of fanciness</description>
	<lastBuildDate>Sat, 21 Jan 2012 12:58:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>www.encodechain.com</title>
		<link>http://blog.tolleiv.de/2009/08/www-encodechain-com/</link>
		<comments>http://blog.tolleiv.de/2009/08/www-encodechain-com/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 12:54:13 +0000</pubDate>
		<dc:creator>tolleiv</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[encodingchain]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://blog.tolleiv.de/?p=213</guid>
		<description><![CDATA[I just "released" encodechain.com. A little tool which enables to combine various popular PHP conversion methods and to check how they affect your input... feel free to give me some feedback :)

I'm also not sure whether I choose the right name for it ... O_o]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.tolleiv.de/wp-content/uploads/2009/08/encodingchain-0.1.png" rel="lightbox[213]"><img class="alignright size-medium wp-image-214" title="encodingchain-0.1" src="http://blog.tolleiv.de/wp-content/uploads/2009/08/encodingchain-0.1-300x221.png" alt="encodingchain-0.1" width="300" height="221" /></a>I just &#8220;released&#8221; <a href="http://www.encodechain.com" target="_blank">encodechain.com</a>. A little tool which enables to combine various popular PHP conversion methods and to check how they affect your input&#8230; feel free to give me some feedback <img src='http://blog.tolleiv.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;m also not sure whether I choose the right name for it &#8230; O_o</p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.tolleiv.de/2009/08/www-encodechain-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery performance</title>
		<link>http://blog.tolleiv.de/2009/06/jquery-performance/</link>
		<comments>http://blog.tolleiv.de/2009/06/jquery-performance/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 06:53:58 +0000</pubDate>
		<dc:creator>tolleiv</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://blog.tolleiv.de/?p=117</guid>
		<description><![CDATA[jQuery 1.3 made a huge step especially towards better performance. But it's not only the framework, from time to time it's the developer who should care about performance too. Artzstudio.com made up a really good summary of how you should change your coding-style to achieve a higher performance with jQuery.

In my opinion the most ...]]></description>
			<content:encoded><![CDATA[<p>jQuery 1.3 made a huge step especially towards better performance. But it&#8217;s not only the framework, from time to time it&#8217;s the developer who should care about performance too. Artzstudio.com made up a really good summary of <a href="http://www.artzstudio.com/2009/04/jquery-performance-rules/">how you should change your coding-style to achieve a higher performance with jQuery</a>.</p>
<p>In my opinion the most important things are:</p>
<ol>
<li><a href="http://www.artzstudio.com/2009/04/jquery-performance-rules/#descend-from-id">Use ID selectors whenever possible</a> since this can be directly mapped to <strong>getElementById()</strong> it much faster then all the other selectors</li>
<li><a href="http://www.artzstudio.com/2009/04/jquery-performance-rules/#harness-chaining">Use chaining whenever possible</a> since it will reuse the already selected element whichout additional selectors</li>
<li><a href="http://www.artzstudio.com/2009/04/jquery-performance-rules/#limit-dom-manipulation">Limit direct DOM manipulation</a> obviously browsers don&#8217;t like it therefor you should avoid it <img src='http://blog.tolleiv.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </li>
<li>Distinguish between <a href="http://www.artzstudio.com/2009/04/jquery-performance-rules/#defer-to-window-load"><strong>$(window).load()</strong> and <strong>$(documen).ready()</strong></a></li>
</ol>
<p>Besides this single resource there&#8217;s also the <a href="http://www.tvidesign.co.uk/blog/improve-your-jquery-25-excellent-tips.aspx">list with 25 jQuery tips from tvidesign.co.uk </a>which contains lot&#8217;s of useful stuff. And of course there are ton&#8217;s of cheat sheets lying around in the web &#8211; you should at least use one <img src='http://blog.tolleiv.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  .</p>
<p><a href="http://acodingfool.typepad.com/blog/jquery-13-cheat-sheet.html">(http://acodingfool.typepad.com/blog/jquery-13-cheat-sheet.html</a>)<br />
(<a href="http://www.gscottolson.com/weblog/2008/01/11/jquery-cheat-sheet/">http://www.gscottolson.com/weblog/2008/01/11/jquery-cheat-sheet/</a>)<br />
(<a href="http://colorcharge.com/jquery/">http://colorcharge.com/jquery/</a>)<br />
(<a href="http://www.gmtaz.com/index.php/jquery-13-cheatsheet-wallpaper/">http://www.gmtaz.com/index.php/jquery-13-cheatsheet-wallpaper/</a>)</p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.tolleiv.de/2009/06/jquery-performance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>my jQuery 1.3.2 update experience</title>
		<link>http://blog.tolleiv.de/2009/06/my-jquery-132-update-experience/</link>
		<comments>http://blog.tolleiv.de/2009/06/my-jquery-132-update-experience/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 07:27:34 +0000</pubDate>
		<dc:creator>tolleiv</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://blog.tolleiv.de/?p=113</guid>
		<description><![CDATA[Over the last days I did some small steps to clean up the code of my TYPO3 imagemap extension. During that process I wanted to update jQuery from 1.2.6 to 1.3.2. Initially this went fine but after some testing I found this strange error:

"  nsresult: ...]]></description>
			<content:encoded><![CDATA[<p>Over the last days I did some small steps to clean up the code of my <a href="http://forge.typo3.org/projects/show/extension-imagemap_wizard">TYPO3 imagemap extension</a>. During that process I wanted to update jQuery from 1.2.6 to 1.3.2. Initially this went fine but after some testing I found this strange error:</p>
<p><code style="overflow:scroll">[Exception... "'Syntax error, unrecognized expression: #' when calling method: [nsIDOMEventListener::handleEvent]"  nsresult: "0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)"  location: "&lt;unknown&gt;"</code></p>
<p>Due to the *verbosity* of the message (location &#8220;&lt;unknown&gt;&#8221; ) it wasn&#8217;t obvious for me that what&#8217;s going wrong. But right after I found the <a href="http://dev.jquery.com/ticket/4323">jQuery-bugtracker log #4323</a> <em>($(&#8216;#&#8217; + myID) throws an exception in version 1.3.1 and 1.3.2 if myID is a zero length string)</em> everything was clear. For some reason they&#8217;ve made the decission to add some strictness to their API so for the future always validate your selectors before you ask jQuery <img src='http://blog.tolleiv.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.tolleiv.de/2009/06/my-jquery-132-update-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

