<?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>webtoolkit4.me &#187; Javascript</title>
	<atom:link href="http://webtoolkit4.me/category/frontend/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://webtoolkit4.me</link>
	<description></description>
	<lastBuildDate>Mon, 23 Jan 2012 11:38:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>How to make a custom music Equalizer with jQuery</title>
		<link>http://webtoolkit4.me/2011/07/01/how-to-make-a-custom-music-equalizer-with-jquery/</link>
		<comments>http://webtoolkit4.me/2011/07/01/how-to-make-a-custom-music-equalizer-with-jquery/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 01:40:22 +0000</pubDate>
		<dc:creator>vmasto</dc:creator>
				<category><![CDATA[Frontend]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://webtoolkit4.me/?p=1053</guid>
		<description><![CDATA[Music on websites is kind of a deprecated concept nowadays, but for those clients who absolutely must have it or or that funky web radio station that needs a custom player, there is no reason not to follow the latest standards using HTML5 and JavaScript. In this micro tutorial we &#8216;ll see how we can [...]


Related posts:<ol><li><a href='http://webtoolkit4.me/2009/06/23/animate-image-filling-up-using-jquery/' rel='bookmark' title='Permanent Link: Animate image filling up using jQuery'>Animate image filling up using jQuery</a></li>
<li><a href='http://webtoolkit4.me/2009/07/18/decision-maker-%e2%80%93-easily-build-decision-guides-and-trouble-shooters-with-this-jquery-script/' rel='bookmark' title='Permanent Link: Decision Maker – Easily build decision guides and trouble shooters with this jQuery script.'>Decision Maker – Easily build decision guides and trouble shooters with this jQuery script.</a></li>
<li><a href='http://webtoolkit4.me/2011/02/18/qaptcha-jquery-captcha-system-with-jquery-ui/' rel='bookmark' title='Permanent Link: QapTcha : jQuery captcha system with jQuery &#038; jQuery UI'>QapTcha : jQuery captcha system with jQuery &#038; jQuery UI</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1054" title="eq" src="http://webtoolkit4.me/wp-content/uploads/2011/06/eq.jpg" alt="" width="580" height="325" /></p>
<p>Music on websites is kind of a deprecated concept nowadays, but for those clients who absolutely must have it or or that funky web radio station that needs a custom player, there is no reason not to follow the latest standards using HTML5 and JavaScript. In this micro tutorial we &#8216;ll see how we can implement a simple pseudo-equalizer in our player of choice using just CSS and jQuery.</p>
<h3>The HTML</h3>
<p>The markup is straightforward, just a simple container with a new element for each of our bars.</p>
<pre>&lt;div class="eq"&gt;
    &lt;span class="bar"&gt;&lt;/span&gt;
    &lt;span class="bar"&gt;&lt;/span&gt;
    &lt;span class="bar"&gt;&lt;/span&gt;
    &lt;span class="bar"&gt;&lt;/span&gt;
    &lt;span class="bar"&gt;&lt;/span&gt;
&lt;/div&gt;</pre>
<h3>Styling our bars</h3>
<p>We can now use whatever styling we need to make the equalizer up to par with our player and website. I chose to use a simple green color for demonstration purposes:</p>
<pre>.bar {
    background-color: green;
    width:7px;
    height:15px;
    display: inline-block;
    vertical-align: bottom;
}</pre>
<p>The important thing here to notice is the <code>vertical-align: bottom;</code> rule. Without it, the equalizer animation behaves a bit peculiar. This forces each bar to animate starting from the top, instead of the bottom.</p>
<h3>The jQuery</h3>
<pre>function fluctuate(bar) {
    var hgt = Math.random() * 10;
    hgt += 1;
    var t = hgt * 30;

    bar.animate({
        height: hgt
    }, t, function() {
        fluctuate($(this));
    });
}

$(".bar").each(function(i) {
    fluctuate($(this));
});</pre>
<p>What this does, is to create a random number which will be used to randomly determine the height of each equalizer bar each time we loop through the function.</p>
<p>We then use the <code>.animate()</code> method of jQuery to begin animating the height of each element randomly. Pretty easy, right?</p>
<p>Let&#8217;s delve into this code a bit more:</p>
<p><code>var hgt = Math.random() * 10;  hgt += 1;</code><br />
Creates a random number of 0 to 10. This will be used as the new height of each element, each time the function loops through itself. If we need a taller, or shorter bar, we can change the maximum height by simply adjusting the &#8220;10&#8243; value after Math.random().</p>
<p><code>var t = hgt * 30;</code><br />
Gets the current height value and multiplies it by a number. This is a little trick to keep the speed with which each bar fluctuates random. If you want something faster or slower, simply adjust that number.</p>
<p><code> bar.animate({<br />
height: hgt<br />
}, t, function() {<br />
fluctuate($(this));<br />
});</code><br />
Here we animate the height of our bar, in the random time of <code>t</code>, and then we call the same function again so it loops through itself over and over again.</p>
<p><code>$(".bar").each(function(i) {<br />
fluctuate($(this));<br />
});</code><br />
Finally, we iterate this function over every single <code>.bar</code> element.</p>
<p>And there we have it, our own custom jQuery and CSS equalizer! Feel free to use it on your own website if you need to.</p>


<p>Related posts:<ol><li><a href='http://webtoolkit4.me/2009/06/23/animate-image-filling-up-using-jquery/' rel='bookmark' title='Permanent Link: Animate image filling up using jQuery'>Animate image filling up using jQuery</a></li>
<li><a href='http://webtoolkit4.me/2009/07/18/decision-maker-%e2%80%93-easily-build-decision-guides-and-trouble-shooters-with-this-jquery-script/' rel='bookmark' title='Permanent Link: Decision Maker – Easily build decision guides and trouble shooters with this jQuery script.'>Decision Maker – Easily build decision guides and trouble shooters with this jQuery script.</a></li>
<li><a href='http://webtoolkit4.me/2011/02/18/qaptcha-jquery-captcha-system-with-jquery-ui/' rel='bookmark' title='Permanent Link: QapTcha : jQuery captcha system with jQuery &#038; jQuery UI'>QapTcha : jQuery captcha system with jQuery &#038; jQuery UI</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://webtoolkit4.me/2011/07/01/how-to-make-a-custom-music-equalizer-with-jquery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MicroJS</title>
		<link>http://webtoolkit4.me/2011/06/28/microjs/</link>
		<comments>http://webtoolkit4.me/2011/06/28/microjs/#comments</comments>
		<pubDate>Tue, 28 Jun 2011 14:14:51 +0000</pubDate>
		<dc:creator>vmasto</dc:creator>
				<category><![CDATA[Frontend]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[Various Tools]]></category>

		<guid isPermaLink="false">http://webtoolkit4.me/?p=1046</guid>
		<description><![CDATA[What is Microjs.com? Imagine you need a certain JavaScript functionality on your website or app, chances are that someone has already implemented it in an easy to work with framework. Microjs.com is a nice website that helps you find the suitable JavaScript micro-framework for your needs. Quite useful! Microjs.com helps you discover the most compact-but-powerful [...]


Related posts:<ol><li><a href='http://webtoolkit4.me/2009/07/06/anemone-an-easy-to-use-ruby-web-spider-framework/' rel='bookmark' title='Permanent Link: Anemone: An easy-to-use Ruby web spider framework'>Anemone: An easy-to-use Ruby web spider framework</a></li>
<li><a href='http://webtoolkit4.me/2010/04/25/micro-image-gallery-a-jquery-plugin/' rel='bookmark' title='Permanent Link: Micro Image Gallery: A jQuery Plugin'>Micro Image Gallery: A jQuery Plugin</a></li>
<li><a href='http://webtoolkit4.me/2011/02/15/js-libs-deconstructed/' rel='bookmark' title='Permanent Link: JS Libs Deconstructed'>JS Libs Deconstructed</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1047" title="microjs" src="http://webtoolkit4.me/wp-content/uploads/2011/06/microjs.jpg" alt="" width="580" height="325" /></p>
<p>What is Microjs.com? Imagine you need a certain JavaScript functionality on your website or app, chances are that someone has already implemented it in an easy to work with framework.</p>
<p>Microjs.com is a nice website that helps you find the suitable JavaScript micro-framework for your needs. Quite useful!</p>
<blockquote><p>Microjs.com helps you discover the most compact-but-powerful microframeworks, and makes it easy for you to pick one that’ll work for you.</p></blockquote>


<p>Related posts:<ol><li><a href='http://webtoolkit4.me/2009/07/06/anemone-an-easy-to-use-ruby-web-spider-framework/' rel='bookmark' title='Permanent Link: Anemone: An easy-to-use Ruby web spider framework'>Anemone: An easy-to-use Ruby web spider framework</a></li>
<li><a href='http://webtoolkit4.me/2010/04/25/micro-image-gallery-a-jquery-plugin/' rel='bookmark' title='Permanent Link: Micro Image Gallery: A jQuery Plugin'>Micro Image Gallery: A jQuery Plugin</a></li>
<li><a href='http://webtoolkit4.me/2011/02/15/js-libs-deconstructed/' rel='bookmark' title='Permanent Link: JS Libs Deconstructed'>JS Libs Deconstructed</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://webtoolkit4.me/2011/06/28/microjs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>pdf.js: Rendering PDF with HTML5 and JavaScript</title>
		<link>http://webtoolkit4.me/2011/06/17/pdf-js-rendering-pdf-with-html5-and-javascript/</link>
		<comments>http://webtoolkit4.me/2011/06/17/pdf-js-rendering-pdf-with-html5-and-javascript/#comments</comments>
		<pubDate>Fri, 17 Jun 2011 07:15:01 +0000</pubDate>
		<dc:creator>Gerasimos</dc:creator>
				<category><![CDATA[Frontend]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://webtoolkit4.me/?p=1027</guid>
		<description><![CDATA[pdf.js is a technology demonstrator prototype to explore whether the HTML5 platform is complete enough to faithfully and efficiently render the ISO 32000-1:2008 Portable Document Format (PDF) without native code assistance. Read more about pdf.js Related posts:Initializr Start an HTML5 project in 15 seconds! JS Libs Deconstructed Riding carousels with jQuery, Mootools, YUI and Prototype


Related posts:<ol><li><a href='http://webtoolkit4.me/2011/02/14/initializr-start-html5-project-15-seconds/' rel='bookmark' title='Permanent Link: Initializr Start an HTML5 project in 15 seconds!'>Initializr Start an HTML5 project in 15 seconds!</a></li>
<li><a href='http://webtoolkit4.me/2011/02/15/js-libs-deconstructed/' rel='bookmark' title='Permanent Link: JS Libs Deconstructed'>JS Libs Deconstructed</a></li>
<li><a href='http://webtoolkit4.me/2009/08/14/riding-carousels-with-jquery-mootools-yui-and-prototype/' rel='bookmark' title='Permanent Link: Riding carousels with jQuery, Mootools, YUI and Prototype'>Riding carousels with jQuery, Mootools, YUI and Prototype</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img src="http://webtoolkit4.me/wp-content/uploads/2011/06/pdfjs.png" alt="" /></p>
<p>pdf.js is a technology demonstrator prototype to explore whether the HTML5 platform is complete enough to faithfully and efficiently render the ISO 32000-1:2008 Portable Document Format (PDF) without native code assistance.</p>
<p><a href="http://andreasgal.com/2011/06/15/pdf-js/">Read more about pdf.js</a></p>


<p>Related posts:<ol><li><a href='http://webtoolkit4.me/2011/02/14/initializr-start-html5-project-15-seconds/' rel='bookmark' title='Permanent Link: Initializr Start an HTML5 project in 15 seconds!'>Initializr Start an HTML5 project in 15 seconds!</a></li>
<li><a href='http://webtoolkit4.me/2011/02/15/js-libs-deconstructed/' rel='bookmark' title='Permanent Link: JS Libs Deconstructed'>JS Libs Deconstructed</a></li>
<li><a href='http://webtoolkit4.me/2009/08/14/riding-carousels-with-jquery-mootools-yui-and-prototype/' rel='bookmark' title='Permanent Link: Riding carousels with jQuery, Mootools, YUI and Prototype'>Riding carousels with jQuery, Mootools, YUI and Prototype</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://webtoolkit4.me/2011/06/17/pdf-js-rendering-pdf-with-html5-and-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modernizr 2.0</title>
		<link>http://webtoolkit4.me/2011/06/08/modernizr-2-0/</link>
		<comments>http://webtoolkit4.me/2011/06/08/modernizr-2-0/#comments</comments>
		<pubDate>Wed, 08 Jun 2011 09:46:55 +0000</pubDate>
		<dc:creator>Gerasimos</dc:creator>
				<category><![CDATA[Frontend]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://webtoolkit4.me/?p=980</guid>
		<description><![CDATA[Modernizr, probably the best feature detection tool out there, released version 2.0. Some of the new features include: Media query testing Conditional resource loading (via yepnope.js) Better documentation Related posts:jQAPI &#8211; Alternative jQuery Documentation WordPress 2.8 for developers Splatter Social Media Icons


Related posts:<ol><li><a href='http://webtoolkit4.me/2010/03/10/jqapi-alternative-jquery-documentation/' rel='bookmark' title='Permanent Link: jQAPI &#8211; Alternative jQuery Documentation'>jQAPI &#8211; Alternative jQuery Documentation</a></li>
<li><a href='http://webtoolkit4.me/2009/06/20/wordpress-28-for-developers/' rel='bookmark' title='Permanent Link: WordPress 2.8 for developers'>WordPress 2.8 for developers</a></li>
<li><a href='http://webtoolkit4.me/2010/04/19/splatter-social-media-icons/' rel='bookmark' title='Permanent Link: Splatter Social Media Icons'>Splatter Social Media Icons</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img src="http://webtoolkit4.me/wp-content/uploads/2011/06/modernizr2.png" alt="Modernizr 2.0" /></p>
<p>Modernizr, probably the best feature detection tool out there, released version 2.0. Some of the new features include:</p>
<ul>
<li>Media query testing</li>
<li>Conditional resource loading (via yepnope.js)</li>
<li>Better documentation</li>
</ul>


<p>Related posts:<ol><li><a href='http://webtoolkit4.me/2010/03/10/jqapi-alternative-jquery-documentation/' rel='bookmark' title='Permanent Link: jQAPI &#8211; Alternative jQuery Documentation'>jQAPI &#8211; Alternative jQuery Documentation</a></li>
<li><a href='http://webtoolkit4.me/2009/06/20/wordpress-28-for-developers/' rel='bookmark' title='Permanent Link: WordPress 2.8 for developers'>WordPress 2.8 for developers</a></li>
<li><a href='http://webtoolkit4.me/2010/04/19/splatter-social-media-icons/' rel='bookmark' title='Permanent Link: Splatter Social Media Icons'>Splatter Social Media Icons</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://webtoolkit4.me/2011/06/08/modernizr-2-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JS Libs Deconstructed</title>
		<link>http://webtoolkit4.me/2011/02/15/js-libs-deconstructed/</link>
		<comments>http://webtoolkit4.me/2011/02/15/js-libs-deconstructed/#comments</comments>
		<pubDate>Tue, 15 Feb 2011 11:30:41 +0000</pubDate>
		<dc:creator>Gerasimos</dc:creator>
				<category><![CDATA[Frontend]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[MooTools]]></category>
		<category><![CDATA[Utilities]]></category>

		<guid isPermaLink="false">http://webtoolkit4.me/?p=939</guid>
		<description><![CDATA[The Deconstructed series is designed to visually and interactively deconstruct the internal code of JavaScript libraries, including jQuery, Prototype and MooTools. It breaks the physical JavaScript into visual blocks that you can easiliy navigate. Each block opens to reveal its internal code. Clickable hyperlinks allow you to follow program flow. Related posts:Reveal: jQuery Modals Made [...]


Related posts:<ol><li><a href='http://webtoolkit4.me/2011/02/16/reveal-jquery-modals-made-easy/' rel='bookmark' title='Permanent Link: Reveal: jQuery Modals Made Easy'>Reveal: jQuery Modals Made Easy</a></li>
<li><a href='http://webtoolkit4.me/2008/12/07/jquery-edit-in-place/' rel='bookmark' title='Permanent Link: jQuery Edit in Place'>jQuery Edit in Place</a></li>
<li><a href='http://webtoolkit4.me/2008/12/03/visual-event-for-jquery-and-yui/' rel='bookmark' title='Permanent Link: Visual Event for jQuery and YUI'>Visual Event for jQuery and YUI</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.keyframesandcode.com/resources/javascript/deconstructed/"><img class="alignnone size-full wp-image-940" title="Js Libs Deconstructed" src="http://webtoolkit4.me/wp-content/uploads/2011/02/decon.png" alt="" width="580" height="216" /></a></p>
<p>The Deconstructed series is designed to visually and  interactively deconstruct the internal code of JavaScript libraries,  including <a href="http://www.keyframesandcode.com/resources/javascript/deconstructed/jquery/">jQuery</a>, <a href="http://www.keyframesandcode.com/resources/javascript/deconstructed/prototype/">Prototype</a> and <a href="http://www.keyframesandcode.com/resources/javascript/deconstructed/mootools/">MooTools</a>. It  breaks the physical JavaScript into visual blocks that you can easiliy  navigate. Each block opens to reveal its internal code. Clickable  hyperlinks allow you to follow program flow.</p>


<p>Related posts:<ol><li><a href='http://webtoolkit4.me/2011/02/16/reveal-jquery-modals-made-easy/' rel='bookmark' title='Permanent Link: Reveal: jQuery Modals Made Easy'>Reveal: jQuery Modals Made Easy</a></li>
<li><a href='http://webtoolkit4.me/2008/12/07/jquery-edit-in-place/' rel='bookmark' title='Permanent Link: jQuery Edit in Place'>jQuery Edit in Place</a></li>
<li><a href='http://webtoolkit4.me/2008/12/03/visual-event-for-jquery-and-yui/' rel='bookmark' title='Permanent Link: Visual Event for jQuery and YUI'>Visual Event for jQuery and YUI</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://webtoolkit4.me/2011/02/15/js-libs-deconstructed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PaintbrushJS by Dave Shea</title>
		<link>http://webtoolkit4.me/2010/08/21/paintbrushjs-by-dave-shea/</link>
		<comments>http://webtoolkit4.me/2010/08/21/paintbrushjs-by-dave-shea/#comments</comments>
		<pubDate>Sat, 21 Aug 2010 17:40:14 +0000</pubDate>
		<dc:creator>klou</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[XHTML]]></category>
		<category><![CDATA[camvas]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[filters]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[image]]></category>

		<guid isPermaLink="false">http://webtoolkit4.me/?p=910</guid>
		<description><![CDATA[PaintbrushJS is a lightweight, browser-based image processing library that can apply various visual filters to images within a web page. So, who&#8217;s into photoshop filters with just a little Javascript, CSS and HTML elements? Your &#8220;thank you&#8221; goes to Author of Mezzoblue, David Shea! Related posts:Smoke Effects: 42 High Resolution Photoshop Brushes Moogenda: a calendar [...]


Related posts:<ol><li><a href='http://webtoolkit4.me/2009/07/24/smoke-effects-42-high-resolution-photoshop-brushe/' rel='bookmark' title='Permanent Link: Smoke Effects: 42 High Resolution Photoshop Brushes'>Smoke Effects: 42 High Resolution Photoshop Brushes</a></li>
<li><a href='http://webtoolkit4.me/2009/03/16/moogenda-a-calendar-mootools-agenda/' rel='bookmark' title='Permanent Link: Moogenda: a calendar mootools agenda'>Moogenda: a calendar mootools agenda</a></li>
<li><a href='http://webtoolkit4.me/2010/05/07/jquery-offline-plugin/' rel='bookmark' title='Permanent Link: jQuery Offline plugin'>jQuery Offline plugin</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>PaintbrushJS is a lightweight, browser-based image processing library<br />
that can apply various visual filters to images within a web page.</p>
<p>So, who&#8217;s into photoshop filters with just a little Javascript, CSS and HTML elements?</p>
<p>Your &#8220;thank you&#8221; goes to Author of <a href="http://mezzoblue.com/">Mezzoblue</a>, David Shea!</p>


<p>Related posts:<ol><li><a href='http://webtoolkit4.me/2009/07/24/smoke-effects-42-high-resolution-photoshop-brushe/' rel='bookmark' title='Permanent Link: Smoke Effects: 42 High Resolution Photoshop Brushes'>Smoke Effects: 42 High Resolution Photoshop Brushes</a></li>
<li><a href='http://webtoolkit4.me/2009/03/16/moogenda-a-calendar-mootools-agenda/' rel='bookmark' title='Permanent Link: Moogenda: a calendar mootools agenda'>Moogenda: a calendar mootools agenda</a></li>
<li><a href='http://webtoolkit4.me/2010/05/07/jquery-offline-plugin/' rel='bookmark' title='Permanent Link: jQuery Offline plugin'>jQuery Offline plugin</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://webtoolkit4.me/2010/08/21/paintbrushjs-by-dave-shea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Class JS &#8211; Basic class structure in under a kilobyte of code</title>
		<link>http://webtoolkit4.me/2010/05/10/class-js-basic-class-structure-in-under-a-kilobyte-of-code/</link>
		<comments>http://webtoolkit4.me/2010/05/10/class-js-basic-class-structure-in-under-a-kilobyte-of-code/#comments</comments>
		<pubDate>Mon, 10 May 2010 06:00:37 +0000</pubDate>
		<dc:creator>Gerasimos</dc:creator>
				<category><![CDATA[Frontend]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://webtoolkit4.me/?p=848</guid>
		<description><![CDATA[Javascript freak? Do you need setters, getters, constructors and class extending capabilities? Class JS provides a basic class structure in under a kilobyte of code. Related posts:Project Deploy CSS Lint &#8211; Improve your CSS Code JS Libs Deconstructed


Related posts:<ol><li><a href='http://webtoolkit4.me/2008/11/27/project-deploy/' rel='bookmark' title='Permanent Link: Project Deploy'>Project Deploy</a></li>
<li><a href='http://webtoolkit4.me/2011/06/16/css-lint-improve-your-css-code/' rel='bookmark' title='Permanent Link: CSS Lint &#8211; Improve your CSS Code'>CSS Lint &#8211; Improve your CSS Code</a></li>
<li><a href='http://webtoolkit4.me/2011/02/15/js-libs-deconstructed/' rel='bookmark' title='Permanent Link: JS Libs Deconstructed'>JS Libs Deconstructed</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.evanbyrne.com/article/class.js"><img class="alignnone size-full wp-image-849" title="classjs" src="http://webtoolkit4.me/wp-content/uploads/2010/05/classjs.gif" alt="" width="580" height="400" /></a></p>
<p>Javascript freak? Do you need setters, getters, constructors and class extending capabilities? Class JS provides a basic class structure in under a kilobyte of code.</p>


<p>Related posts:<ol><li><a href='http://webtoolkit4.me/2008/11/27/project-deploy/' rel='bookmark' title='Permanent Link: Project Deploy'>Project Deploy</a></li>
<li><a href='http://webtoolkit4.me/2011/06/16/css-lint-improve-your-css-code/' rel='bookmark' title='Permanent Link: CSS Lint &#8211; Improve your CSS Code'>CSS Lint &#8211; Improve your CSS Code</a></li>
<li><a href='http://webtoolkit4.me/2011/02/15/js-libs-deconstructed/' rel='bookmark' title='Permanent Link: JS Libs Deconstructed'>JS Libs Deconstructed</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://webtoolkit4.me/2010/05/10/class-js-basic-class-structure-in-under-a-kilobyte-of-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Riding carousels with jQuery, Mootools, YUI and Prototype</title>
		<link>http://webtoolkit4.me/2009/08/14/riding-carousels-with-jquery-mootools-yui-and-prototype/</link>
		<comments>http://webtoolkit4.me/2009/08/14/riding-carousels-with-jquery-mootools-yui-and-prototype/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 07:56:33 +0000</pubDate>
		<dc:creator>Gerasimos</dc:creator>
				<category><![CDATA[Frontend]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://webtoolkit4.me/?p=537</guid>
		<description><![CDATA[Carousels are everywhere. We can see them in many blogs and portals. It&#8217;s actually a good way to group content like images, new articles etc and get more attention for these items. With the explosion of javascript frameworks, it&#8217;s impossible not to find a carousel script for the framework of your choice. Here&#8217;s a list [...]


Related posts:<ol><li><a href='http://webtoolkit4.me/2009/07/15/advanced-jquery-turning-a-good-app-into-a-great-app/' rel='bookmark' title='Permanent Link: Advanced jQuery: Turning a good app into a great app'>Advanced jQuery: Turning a good app into a great app</a></li>
<li><a href='http://webtoolkit4.me/2011/02/15/js-libs-deconstructed/' rel='bookmark' title='Permanent Link: JS Libs Deconstructed'>JS Libs Deconstructed</a></li>
<li><a href='http://webtoolkit4.me/2009/08/13/jquery-growl-likenotification-systems/' rel='bookmark' title='Permanent Link: 6 jQuery growl-like notification systems'>6 jQuery growl-like notification systems</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-538" title="00_carousels" src="http://webtoolkit4.me/wp-content/uploads/2009/08/00_carousels.jpg" alt="00_carousels" width="590" height="300" /></p>
<p>Carousels are everywhere. We can see them in many blogs and portals. It&#8217;s actually a good way to group content like images, new articles etc and get more attention for these items. With the explosion of<a href="http://en.wikipedia.org/wiki/Comparison_of_JavaScript_frameworks" target="_blank"> javascript frameworks</a>, it&#8217;s impossible not to find a carousel script for the framework of your choice. Here&#8217;s a list of 4 carousel scripts for jQuery, MooTools, YUI and Prototype:<span id="more-537"></span></p>
<h3><span>iCarousel (Mootools)</span></h3>
<p><img class="alignnone size-full wp-image-539" title="01_mootools" src="http://webtoolkit4.me/wp-content/uploads/2009/08/01_mootools.jpg" alt="01_mootools" width="590" height="400" /><br />
<a href="http://zendold.lojcomm.com.br/icarousel/">Download</a> <a href="http://zendold.lojcomm.com.br/icarousel/example6.asp">Demo</a></p>
<h3><span>jCarousel (jQuery)</span></h3>
<p><img class="alignnone size-full wp-image-540" title="02_jquery" src="http://webtoolkit4.me/wp-content/uploads/2009/08/02_jquery.jpg" alt="02_jquery" width="590" height="320" /><br />
<a href="http://sorgalla.com/projects/jcarousel/">Download</a> <a href="http://sorgalla.com/projects/jcarousel/#Examples">Demo</a></p>
<h3><span>Carousel Control (YUI)</span></h3>
<p><img class="alignnone size-full wp-image-541" title="03_yui" src="http://webtoolkit4.me/wp-content/uploads/2009/08/03_yui.jpg" alt="03_yui" width="590" height="320" /><br />
<a href="http://developer.yahoo.com/yui/carousel/">Download</a> <a href="http://developer.yahoo.com/yui/examples/carousel/index.html">Demo</a></p>
<h3><span>Carousel (Prototype)</span></h3>
<p><img class="alignnone size-full wp-image-542" title="04_prototype" src="http://webtoolkit4.me/wp-content/uploads/2009/08/04_prototype.jpg" alt="04_prototype" width="590" height="320" /><br />
<a href="http://code.google.com/p/prototype-carousel/">Download</a> <a href="http://dev.victorstanciu.ro/prototype/carousel/">Demo</a></p>


<p>Related posts:<ol><li><a href='http://webtoolkit4.me/2009/07/15/advanced-jquery-turning-a-good-app-into-a-great-app/' rel='bookmark' title='Permanent Link: Advanced jQuery: Turning a good app into a great app'>Advanced jQuery: Turning a good app into a great app</a></li>
<li><a href='http://webtoolkit4.me/2011/02/15/js-libs-deconstructed/' rel='bookmark' title='Permanent Link: JS Libs Deconstructed'>JS Libs Deconstructed</a></li>
<li><a href='http://webtoolkit4.me/2009/08/13/jquery-growl-likenotification-systems/' rel='bookmark' title='Permanent Link: 6 jQuery growl-like notification systems'>6 jQuery growl-like notification systems</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://webtoolkit4.me/2009/08/14/riding-carousels-with-jquery-mootools-yui-and-prototype/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DD_belatedPNG: better PNG background-image support for IE6</title>
		<link>http://webtoolkit4.me/2008/12/08/dd_belatedpng-better-png-background-image-support-for-ie6/</link>
		<comments>http://webtoolkit4.me/2008/12/08/dd_belatedpng-better-png-background-image-support-for-ie6/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 19:50:35 +0000</pubDate>
		<dc:creator>Gerasimos</dc:creator>
				<category><![CDATA[Frontend]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://webtoolkit4.me/?p=224</guid>
		<description><![CDATA[DD_belatedPNG is another PNG fix for IE6. There are so many out there but most them FAIL one or the other way. After playing for a while with it, it seems that it covers some cases where most of the other scripts just fail like background-position and background-repeat cases.  DD_belated comes in 2 versions, uncompressed [...]


Related posts:<ol><li><a href='http://webtoolkit4.me/2009/02/11/supersized-full-screen-background-slideshow/' rel='bookmark' title='Permanent Link: Supersized: Full Screen Background/Slideshow'>Supersized: Full Screen Background/Slideshow</a></li>
<li><a href='http://webtoolkit4.me/2008/11/13/15-free-high-resolution-icons/' rel='bookmark' title='Permanent Link: 15 Free High Resolution Icons'>15 Free High Resolution Icons</a></li>
<li><a href='http://webtoolkit4.me/2010/04/25/micro-image-gallery-a-jquery-plugin/' rel='bookmark' title='Permanent Link: Micro Image Gallery: A jQuery Plugin'>Micro Image Gallery: A jQuery Plugin</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dillerdesign.com/experiment/DD_belatedPNG/"><img title="dd_belatedpng" src="http://webtoolkit4.me/wp-content/uploads/2008/12/dd_belatedpng.gif" alt="" width="590" height="69" /></a></p>
<p>DD_belatedPNG is another PNG fix for IE6. There are so many out there but most them FAIL one or the other way. After playing for a while with it, it seems that it covers some cases where most of the other scripts just fail like background-position and background-repeat cases.  DD_belated comes in 2 versions, uncompressed (6.5kb) and compressed (3.65kb) and <a href="http://www.dillerdesign.com/experiment/DD_belatedPNG/" target="_blank">it can be downloaded for free from its official website</a>.</p>


<p>Related posts:<ol><li><a href='http://webtoolkit4.me/2009/02/11/supersized-full-screen-background-slideshow/' rel='bookmark' title='Permanent Link: Supersized: Full Screen Background/Slideshow'>Supersized: Full Screen Background/Slideshow</a></li>
<li><a href='http://webtoolkit4.me/2008/11/13/15-free-high-resolution-icons/' rel='bookmark' title='Permanent Link: 15 Free High Resolution Icons'>15 Free High Resolution Icons</a></li>
<li><a href='http://webtoolkit4.me/2010/04/25/micro-image-gallery-a-jquery-plugin/' rel='bookmark' title='Permanent Link: Micro Image Gallery: A jQuery Plugin'>Micro Image Gallery: A jQuery Plugin</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://webtoolkit4.me/2008/12/08/dd_belatedpng-better-png-background-image-support-for-ie6/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching 25/108 queries in 0.055 seconds using disk: basic
Object Caching 2465/2530 objects using disk: basic

Served from: webtoolkit4.me @ 2012-05-21 11:35:23 -->
