<?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>ourlil.com &#187; javascript</title>
	<atom:link href="http://OurLil.com/blog/category/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://OurLil.com</link>
	<description>A web site for tutti noi (all of us!)</description>
	<lastBuildDate>Mon, 28 Nov 2011 15:23:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>50 jQuery Tools for Awesome Websites &#124; Pro Blog Design</title>
		<link>http://OurLil.com/blog/50-jquery-tools-for-awesome-websites-pro-blog-design/693/</link>
		<comments>http://OurLil.com/blog/50-jquery-tools-for-awesome-websites-pro-blog-design/693/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 21:39:40 +0000</pubDate>
		<dc:creator>webmaestro</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[laptop]]></category>

		<guid isPermaLink="false">http://OurLil.com/?p=693</guid>
		<description><![CDATA[50 jQuery Tools for Awesome Websites &#124; Pro Blog Design.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.problogdesign.com/resources/50-jquery-tools-for-awesome-websites/">50 jQuery Tools for Awesome Websites | Pro Blog Design</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://OurLil.com/blog/50-jquery-tools-for-awesome-websites-pro-blog-design/693/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Let&#8217;s make the web faster &#8211; Google Code</title>
		<link>http://OurLil.com/blog/lets-make-the-web-faster-google-code/635/</link>
		<comments>http://OurLil.com/blog/lets-make-the-web-faster-google-code/635/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 16:28:21 +0000</pubDate>
		<dc:creator>webmaestro</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[optimization]]></category>

		<guid isPermaLink="false">http://clay.freedomblogging.com/?p=635</guid>
		<description><![CDATA[Let&#8217;s make the web faster &#8211; Google Code. Some choice excerpts: CSS: Using every declaration just once Using every CSS declaration only once is an effective way to reduce file size of style sheets. Itâ€™s not a trivial optimization technique though: Watch over the cascade and adjust your editing workflow. HTTP caching Web pages can [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://code.google.com/speed/articles/">Let&#8217;s make the web faster &#8211; Google Code</a>.</p>
<p>Some choice excerpts:</p>
<h4><a href="http://code.google.com/speed/articles/optimizing-css.html">CSS: Using every declaration just once</a></h4>
<blockquote>
<div id="optimizing-css">Using every CSS declaration only once is an effective way to reduce file size of style sheets. Itâ€™s not a trivial optimization technique though: Watch over the cascade and adjust your editing workflow.</div>
</blockquote>
<div>
<h4><a href="http://code.google.com/speed/articles/caching.html">HTTP caching</a></h4>
<blockquote>
<div id="caching">Web pages can load much faster on repeated visits if the resources come from the cache. Learn about two groups of HTTP headers that make all the difference.</div>
</blockquote>
<div>
<h4><a href="http://code.google.com/speed/articles/optimizing-images.html">Optimizing web graphics</a></h4>
<blockquote>
<div id="optimizing-images">Optimizing your web illustrations, icons, and graphics is one of the simplest yet most effective ways to decrease your page load time. In this tutorial, we discuss image file formats and optimize some real Google graphics for faster download on the web.</div>
</blockquote>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://OurLil.com/blog/lets-make-the-web-faster-google-code/635/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript Get inner text -</title>
		<link>http://OurLil.com/blog/javascript-get-inner-text-2/250/</link>
		<comments>http://OurLil.com/blog/javascript-get-inner-text-2/250/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 14:59:26 +0000</pubDate>
		<dc:creator>webmaestro</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://clay.freedomblogging.com/2008/10/28/javascript-get-inner-text-2/250/</guid>
		<description><![CDATA[function GetInnerText(elem) { return (typeof(elem.innerText) != &apos;undefined&apos;) ? elem.innerText : (typeof(elem.textContent) != &apos;undefined&apos;) ? elem.textContent : elem.innerHTML.replace(/]+&#62;/g, &apos;&apos;); } Get inner text &#8211; Karamasoft Support Forums.]]></description>
			<content:encoded><![CDATA[<p>function GetInnerText(elem) {</p>
<p>   return (typeof(elem.innerText) != &apos;undefined&apos;) ? elem.innerText :</p>
<p>          (typeof(elem.textContent) != &apos;undefined&apos;) ?   elem.textContent : elem.innerHTML.replace(/]+&gt;/g, &apos;&apos;);</p>
<p>}</p>
<p><a href="http://forums.karamasoft.com/ShowPost.aspx?PostID=4393">Get inner text &#8211; Karamasoft Support Forums</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://OurLil.com/blog/javascript-get-inner-text-2/250/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript Get inner text -</title>
		<link>http://OurLil.com/blog/javascript-get-inner-text/248/</link>
		<comments>http://OurLil.com/blog/javascript-get-inner-text/248/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 14:59:24 +0000</pubDate>
		<dc:creator>webmaestro</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://clay.freedomblogging.com/2008/10/28/javascript-get-inner-text/248/</guid>
		<description><![CDATA[function GetInnerText(elem) { return (typeof(elem.innerText) != &apos;undefined&apos;) ? elem.innerText : (typeof(elem.textContent) != &apos;undefined&apos;) ? elem.textContent : elem.innerHTML.replace(/]+&#62;/g, &apos;&apos;); } Get inner text &#8211; Karamasoft Support Forums.]]></description>
			<content:encoded><![CDATA[<p>function GetInnerText(elem) {</p>
<p>   return (typeof(elem.innerText) != &apos;undefined&apos;) ? elem.innerText :</p>
<p>          (typeof(elem.textContent) != &apos;undefined&apos;) ?   elem.textContent : elem.innerHTML.replace(/]+&gt;/g, &apos;&apos;);</p>
<p>}</p>
<p><a href="http://forums.karamasoft.com/ShowPost.aspx?PostID=4393">Get inner text &#8211; Karamasoft Support Forums</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://OurLil.com/blog/javascript-get-inner-text/248/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Farbtastic: jQuery color picker plug-in &#124; Steven Wittens &#8211; Acko.net</title>
		<link>http://OurLil.com/blog/farbtastic-jquery-color-picker-plug-in-steven-wittens-ackonet/189/</link>
		<comments>http://OurLil.com/blog/farbtastic-jquery-color-picker-plug-in-steven-wittens-ackonet/189/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 15:32:47 +0000</pubDate>
		<dc:creator>webmaestro</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Interactive Team]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[WebTech]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[nifty]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[picker]]></category>

		<guid isPermaLink="false">http://clay.freedomblogging.com/2008/09/05/farbtastic-jquery-color-picker-plug-in-steven-wittens-ackonet/</guid>
		<description><![CDATA[Farbtastic is a jQuery plug-in that can add one or more color picker widgets into a page through JavaScript. Each widget is then linked to an existing element (e.g. a text field) and will update the element&#8217;s value when a color is selected. Download Farbtastic 1.2 &#8211; 8 January 2007 (License: GPL). Farbtastic: jQuery color [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://clay.freedomblogging.com/?attachment_id=190"><img src="http://OurLil.com/files/farbtastic_screenshot.jpg" alt="Farbtastic Color Picker widget" align="right" border="0" hspace="10" vspace="10" width="125" /></a>Farbtastic is a <a href="http://www.jquery.com/">jQuery</a> plug-in that can add one or more color picker widgets into a page through JavaScript. Each widget is then linked to an existing element (e.g. a text field) and will update the element&#8217;s value when a color is selected.</p>
<p><a href="http://acko.net/files/farbtastic_/farbtastic12.zip">Download Farbtastic 1.2</a> &#8211; 8 January 2007 (License: <a href="http://www.gnu.org/copyleft/gpl.html">GPL</a>).</p>
<p><a href="http://acko.net/dev/farbtastic">Farbtastic: jQuery color picker plug-in | Steven Wittens &#8211; Acko.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://OurLil.com/blog/farbtastic-jquery-color-picker-plug-in-steven-wittens-ackonet/189/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Format and Colour</title>
		<link>http://OurLil.com/blog/javascript-format-and-colour/188/</link>
		<comments>http://OurLil.com/blog/javascript-format-and-colour/188/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 15:58:15 +0000</pubDate>
		<dc:creator>webmaestro</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Interactive Team]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[js]]></category>

		<guid isPermaLink="false">http://clay.freedomblogging.com/2008/09/04/javascript-format-and-colour/</guid>
		<description><![CDATA[Javascript Format and Colour This is a nifty tool to format JavaScript that has been mini-fied. Very nifty for reading JavaScript (although it doesn&#8217;t get your function names back, if they&#8217;ve been obfuscated&#8230;).]]></description>
			<content:encoded><![CDATA[<p><a href="http://javascript.about.com/library/blformat.htm">Javascript Format and Colour</a></p>
<p>This is a nifty tool to format JavaScript that has been mini-fied. Very nifty for reading JavaScript (although it doesn&#8217;t get your function names back, if they&#8217;ve been obfuscated&#8230;).</p>
]]></content:encoded>
			<wfw:commentRss>http://OurLil.com/blog/javascript-format-and-colour/188/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox to get faster JavaScript</title>
		<link>http://OurLil.com/blog/firefox-to-get-faster-javascript/185/</link>
		<comments>http://OurLil.com/blog/firefox-to-get-faster-javascript/185/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 05:14:00 +0000</pubDate>
		<dc:creator>webmaestro</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[javascript js]]></category>

		<guid isPermaLink="false">http://clay.freedomblogging.com/2008/08/22/firefox-to-get-faster-javascript/</guid>
		<description><![CDATA[Firefox to get massive JavaScript performance boost Mozilla is leveraging an impressive new optimization technique to bring a big performance boost to the Firefox JavaScript engine. The code was merged today (but is not yet ready to be enabled by default in the nightly builds) and is planned for inclusion in Firefox 3.1, the next [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://arstechnica.com/news.ars/post/20080822-firefox-to-get-massive-javascript-performance-boost.html">Firefox to get massive JavaScript performance boost<img src="http://media.arstechnica.com/news.media/tracemonkey-3.png" align="right" width="300" hspace="10" vspace="10" border="0" alt="JavaScript SpiderMonkey improvements" /></a><br />
<blockquote>Mozilla is leveraging an impressive new optimization technique to bring a big performance boost to the Firefox JavaScript engine. The code was merged today (but is not yet ready to be enabled by default in the nightly builds) and is planned for inclusion in Firefox 3.1, the next incremental update of the open-source web browser.Â Â Â </p></blockquote>
<p>Â </p>
]]></content:encoded>
			<wfw:commentRss>http://OurLil.com/blog/firefox-to-get-faster-javascript/185/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Content Syndication with Case-Hardened JavaScript</title>
		<link>http://OurLil.com/blog/content-syndication-with-case-hardened-javascript/126/</link>
		<comments>http://OurLil.com/blog/content-syndication-with-case-hardened-javascript/126/#comments</comments>
		<pubDate>Thu, 08 May 2008 20:50:36 +0000</pubDate>
		<dc:creator>webmaestro</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Trends]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[nifty]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://clay.freedomblogging.com/content-syndication-with-case-hardened-javascript/</guid>
		<description><![CDATA[Content Syndication with Case-Hardened JavaScript Nice little tutorial on creating 3-tier/MVC JavaScript&#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://kentbrewster.com/badges/">Content Syndication with Case-Hardened JavaScript</a></p>
<p>Nice little tutorial on creating 3-tier/MVC JavaScript&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://OurLil.com/blog/content-syndication-with-case-hardened-javascript/126/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JSUtilities.js &#8211; Nifty little JavaScript Utilities</title>
		<link>http://OurLil.com/blog/jsutilitiesjs-nifty-little-javascript-utilities/103/</link>
		<comments>http://OurLil.com/blog/jsutilitiesjs-nifty-little-javascript-utilities/103/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 05:13:17 +0000</pubDate>
		<dc:creator>webmaestro</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[nifty]]></category>

		<guid isPermaLink="false">http://clay.freedomblogging.com/jsutilitiesjs-nifty-little-javascript-utilities/</guid>
		<description><![CDATA[Here&#8217;s an interesting little JavaScript utilities file: array.push (if unsupported) array.shift (if unsupported) function.apply (if unsupported) inArray() [Port from PHP] Hunts for a value in the specified array isArray() [Port from PHP] verifies if something is an array ksort() [Port from PHP] sorts an array by key names addClass() appends the specified class to the [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s an interesting little JavaScript utilities file:</p>
<ul>
<li>array.push (if unsupported)</li>
<li>array.shift (if unsupported)</li>
<li>function.apply (if unsupported)</li>
<li>inArray() [Port from PHP] Hunts for a value in the specified array</li>
<li>isArray() [Port from PHP] verifies if something is an array</li>
<li>ksort() [Port from PHP] sorts an array by key names</li>
<li>addClass() appends the specified class to the object</li>
<li>removeClass() removes the specified class to the object</li>
<li>lastChildContainingText() finds the last block-level text-containing element within an object</li>
</ul>
<p><a href="http://old.easy-designs.net/code/jsUtilities/working/jsUtilities.js" target="_blank">http://old.easy-designs.net/code/jsUtilities/working/jsUtilities.js</a></p>
]]></content:encoded>
			<wfw:commentRss>http://OurLil.com/blog/jsutilitiesjs-nifty-little-javascript-utilities/103/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Development Bookmarklets</title>
		<link>http://OurLil.com/blog/web-development-bookmarklets/40/</link>
		<comments>http://OurLil.com/blog/web-development-bookmarklets/40/#comments</comments>
		<pubDate>Sat, 04 Aug 2007 00:52:31 +0000</pubDate>
		<dc:creator>webmaestro</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Interactive Team]]></category>
		<category><![CDATA[WebTech]]></category>
		<category><![CDATA[bookmarklets]]></category>
		<category><![CDATA[favelets]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[nifty]]></category>

		<guid isPermaLink="false">http://OurLil.com/blog/web-development-bookmarklets/</guid>
		<description><![CDATA[Web Development Bookmarklets This is a nice place to grab some bookmarklets / favelets (miniature javascripts embedded in a Bookmark).]]></description>
			<content:encoded><![CDATA[<p><a href="https://www.squarefree.com/bookmarklets/webdevel.html">Web Development Bookmarklets</a></p>
<p>This is a nice place to grab some bookmarklets / favelets (miniature javascripts embedded in a Bookmark).</p>
]]></content:encoded>
			<wfw:commentRss>http://OurLil.com/blog/web-development-bookmarklets/40/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

