<?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>WebTecker the latest Web Trends, Resources and News. &#187; Javascript</title>
	<atom:link href="http://webtecker.com/category/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://webtecker.com</link>
	<description>Web Resources and Trends</description>
	<lastBuildDate>Wed, 27 Jul 2011 05:44:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Parse XML with jQuery without a plugin</title>
		<link>http://webtecker.com/2009/11/24/parse-xml-with-jquery-without-a-plugin/</link>
		<comments>http://webtecker.com/2009/11/24/parse-xml-with-jquery-without-a-plugin/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 20:25:31 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://webtecker.com/?p=443</guid>
		<description><![CDATA[A few days ago I found a jQuery Plugin called jParse that allows you to quickly and easily parse XML.  While this is a great plugin and does exactly as it says, I personally try not to use too many plugins in my JavaScript Programing.  So I decided to write a tutorial to show you how [...]]]></description>
			<content:encoded><![CDATA[<p>A few days ago I found a jQuery Plugin called <a title="jparse" href="http://jparse.kylerush.net/" target="_blank">jParse</a> that allows you to quickly and easily parse XML.  While this is a great plugin and does exactly as it says, I personally try not to use too many plugins in my JavaScript Programing.  So I decided to write a tutorial to show you how easy it actually is to Parse XML via jQuery.</p>
<p>Lets first take a look at the XML file we are going to Parse.  The XML document is saved as cd_catalog.xml.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
</pre></td><td class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span> <span style="color: #000066;">encoding</span>=<span style="color: #ff0000;">&quot;utf-8&quot;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;CATALOG<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;CD</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;physcial&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;TITLE<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Maggie May<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/TITLE<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;ARTIST<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Rod Stewart<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/ARTIST<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;COUNTRY<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>UK<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/COUNTRY<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;COMPANY<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Pickwick<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/COMPANY<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;PRICE<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>8.50<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/PRICE<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;YEAR<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>1990<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/YEAR<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/CD<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;CD</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;physical&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;TITLE<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>When a man loves a woman<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/TITLE<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;ARTIST<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Percy Sledge<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/ARTIST<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;COUNTRY<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>USA<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/COUNTRY<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;COMPANY<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Atlantic<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/COMPANY<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;PRICE<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>8.70<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/PRICE<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;YEAR<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>1987<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/YEAR<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/CD<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;CD</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;digital&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;TITLE<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Big Willie style<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/TITLE<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;ARTIST<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Will Smith<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/ARTIST<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;COUNTRY<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>USA<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/COUNTRY<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;COMPANY<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Columbia<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/COMPANY<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;PRICE<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>9.90<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/PRICE<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;YEAR<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>1997<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/YEAR<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/CD<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/CATALOG<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

<p>As you see this is a simple XML document of a CD Catalog. If you have never seen an XML document before I suggest you read up on it.  Now lets look at the jQuery Code we will use to extract the data.  I am going to post the full code and then explain what each line does.  If you don&#8217;t care what each line does then feel free to copy and paste and augment the code.  Anyway here is the code.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
  $.<span style="color: #660066;">ajax</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>
    type<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;GET&quot;</span><span style="color: #339933;">,</span>
    url<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;cd_catalog.xml&quot;</span><span style="color: #339933;">,</span>
    dataType<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;xml&quot;</span><span style="color: #339933;">,</span>
    success<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>xml<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
                  $<span style="color: #009900;">&#40;</span>xml<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">find</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;CD&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">each</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
                        $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#CD&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">append</span><span style="color: #009900;">&#40;</span>$<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">find</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;ARTIST&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">text</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">&quot;&lt;br /&gt;&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                  <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
               <span style="color: #009900;">&#125;</span>
  <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>The output of the jQuery code would look something like this:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">Rod Stewart&lt;br /&gt;
Percy Sledge&lt;br /&gt;
Will Smith&lt;br /&gt;</pre></td></tr></table></div>

<p>So now that you see the code let me explain.  First you must call the $.Ajax Get Request in order to actually get the XML file.  (On a side note you may also use jQuery&#8217;s $.get function to retrieve the XML document.) Click here if you don&#8217;t understand the <a href="http://docs.jquery.com/Ajax/jQuery.ajax">$.Ajax Get Request</a>. When you successfully get the cd_catalog.xml file you must call a function to process the XML. Then on Line 7 in the jQuery code <strong>$(xml).find(&#8220;CD&#8221;).each(function()</strong> is how you actually process the XML data.  First you must use the <em>.find</em> to search all &#8220;CD&#8221; tags in the XML document then use the <em>.each</em> to loop through every &#8220;CD&#8221; tag that is in the XML document. Now that we are looping through the all &#8220;CD&#8221; tags, we can output the Artist Name by using the following code on line 8  <strong>$(&#8220;#CD&#8221;).append($(this).find(&#8220;ARTIST&#8221;).text() + &#8220;br/&#8221;);</strong>.  We must first <a href="http://docs.jquery.com/Manipulation/append">Append</a> data to the div with the ID CD in the HTML document.  The data that we will append to the div is as follows: <strong>$(this).find(&#8220;ARTIST&#8221;).text()</strong>.  What we do here is find the tag &#8220;ARTIST&#8221; within the &#8220;CD&#8221; Node and get the text within the &#8220;ARTIST&#8221; tag. As you see its pretty simple to Parse an XML document with jQuery.  But there is one more topic I want to cover and that is <strong>XML tag Attributes</strong>. </p>
<p>In the XML document above you can see that in the &#8220;CD&#8221; tag we have an attribute called &#8220;type&#8221;.  To access an attribute you can use the code below after line 7 in the above jQuery code.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">        $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;type&quot;</span><span style="color: #009900;">&#41;</span></pre></td></tr></table></div>

<p>And that is it for this tutorial.  I hope it will help you on your quest to become a jQuery guru.  If you have any questions please don&#8217;t hesitate to comment below.</p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=443&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2009/11/24/parse-xml-with-jquery-without-a-plugin/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Great Accordion Scripts</title>
		<link>http://webtecker.com/2008/06/19/accordion-scripts/</link>
		<comments>http://webtecker.com/2008/06/19/accordion-scripts/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 02:45:08 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Accordion]]></category>
		<category><![CDATA[EXT]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Prototype]]></category>
		<category><![CDATA[Scriptaculous]]></category>
		<category><![CDATA[Spry]]></category>

		<guid isPermaLink="false">http://webtecker.com/?p=335</guid>
		<description><![CDATA[Last Week NetTuts posted a great tutorial about Creating an Accordion Effect using Prototype and Scriptaculous javascript libraries. I thought that this post was very informative yet simple. So I scoured the internet for some great According Scripts that will accomplish this effect using various coding methods. Simple javascript Accordian &#8211; The Simple JavaScript accordion [...]]]></description>
			<content:encoded><![CDATA[<p>Last Week <a title="NetTuts" href="http://nettuts.com/" target="_blank">NetTuts</a> posted a great tutorial about Creating an Accordion Effect using Prototype and Scriptaculous javascript libraries.  I thought that this post was very informative yet simple.  So I scoured the internet for some great According Scripts that will accomplish this effect using various coding methods.</p>
<ul>
<li><strong><a title="Simple Javascript Accordian" href="http://www.dezinerfolio.com/2007/07/19/simple-javascript-accordions/" target="_blank">Simple javascript Accordian</a></strong> &#8211; The Simple JavaScript accordion script is my favorite.  It is very small script at about 1kb and it requires no frameworks.  It works in all browsers and it is very easy to integrate.<br />
<a title="Simple Javascript Accordian" href="http://www.dezinerfolio.com/2007/07/19/simple-javascript-accordions/" target="_blank"><img class="alignnone size-full wp-image-336" title="simple-accordian" src="http://webtecker.com/wp-content/uploads/2008/06/simple-accordian.jpg" alt="" width="277" height="150" /></a></li>
<li><a title="jQuery Accordion Plugin" href="http://bassistance.de/jquery-plugins/jquery-plugin-accordion/" target="_blank">j<strong>Query Accordion Plugin</strong></a><strong> </strong>- This jQuery Plugin creates an Accordion that allows for nested lists, definition lists, and nested divs.  The plugin requires<a href="http://jquery.com/">jQuery</a> and the <a href="http://jquery.com/plugins/project/dimensions">dimensions plugin</a>.<br />
<a title="jQuery Accordion Plugin" href="http://bassistance.de/jquery-plugins/jquery-plugin-accordion/" target="_blank"><img class="alignnone size-full wp-image-337" title="jquery accordion plugin" src="http://webtecker.com/wp-content/uploads/2008/06/jquery-plugin.jpg" alt="" width="277" height="133" /></a></li>
<li><strong><a title="Jquery Horizontal Accordion" href="http://dev.portalzine.de/index?/Horizontal_Accordion" target="_blank">jQuery Horizontal Accordion</a></strong> &#8211; This is another jQuery Plugin but the accordion is horizontal.  It is very similar to the  XBOX 360 interface.   This plugin requires you use the <a title="interface" href="http://interface.eyecon.ro/" target="_blank">interface plugin</a>.<br />
<a title="jQuery Horizontal Accordion" href="http://dev.portalzine.de/index?/Horizontal_Accordion" target="_blank"><img class="alignnone size-full wp-image-338" title="horizontal-jquery-accordion" src="http://webtecker.com/wp-content/uploads/2008/06/horizontal-jquery.jpg" alt="" width="325" height="100" /></a></li>
<li><strong><a title="MooTools Accordion" href="http://www.solutoire.com/experiments/mootools/acc_ex3.html" target="_blank">MooTools Accordion</a></strong> &#8211; This MooTools Accordion script is very nice script that is very easy to implement.  There is no additional plugins that you need to get this script to work.  The one problem with this is that there is no support for this script.  But you can easily figure out how to integrate by viewing the source code.<br />
<a title="MooTools Accordion" href="http://www.solutoire.com/experiments/mootools/acc_ex3.html" target="_blank"><img class="alignnone size-full wp-image-339" title="mootools-accordion" src="http://webtecker.com/wp-content/uploads/2008/06/mootools-accordion.jpg" alt="" width="422" height="158" /></a></li>
<li><strong><a title="Horizontal JavaScript Accordion" href="http://www.leigeber.com/2008/05/horizontal-javascript-accordion-menu/" target="_blank">Horizontal JavaScript Accordion</a></strong> &#8211; This script requires no JavaScript frameworks and is just 1kb.  It has been tested in all major browsers.  This is a great an easy script to implement.<br />
<img class="alignnone size-full wp-image-340" title="horizontal-accordion" src="http://webtecker.com/wp-content/uploads/2008/06/horizontal-accordion.jpg" alt="" width="400" height="93" /></li>
<li><strong><a title="Accordion 2.0" href="http://stickmanlabs.com/accordion/" target="_blank">Accordion v2.0</a></strong> &#8211; This accordion script is built with Prototype and Scriptaculous.  This script handles both horizontal and vertical accordions.  It can even have an accordion inside an accordion.  You should check this out.<br />
<a title="Accordion 2.0" href="http://stickmanlabs.com/accordion/" target="_blank"><img class="alignnone size-full wp-image-341" title="prototype-accordion" src="http://webtecker.com/wp-content/uploads/2008/06/prototype-accordion.jpg" alt="" width="325" height="100" /></a></li>
<li><strong><a title="EXT Accordion" href="http://aariadne.com/accordion/accordion.html" target="_blank">EXT Accordion Widget</a></strong> &#8211; This Accordion uses the <a title="extjs" href="http://extjs.com/" target="_blank">EXT JavaScript Library</a>.  Whats really cool about this accordion is that you can drag and drop the accordion slides into new positions.<br />
<a title="EXT Accordion" href="http://aariadne.com/accordion/accordion.html" target="_blank"><img class="alignnone size-full wp-image-342" title="drag_accordion" src="http://webtecker.com/wp-content/uploads/2008/06/drag_accordion.jpg" alt="" width="325" height="100" /></a></li>
<li><a title="Spry Accordion" href="http://labs.adobe.com/technologies/spry/samples/accordion/AccordionSample.html" target="_blank">Spry Accordion</a> &#8211; The Spry Accordion comes with tons of different options and effects.  It is very easy to implement with Dreamweaver but if you don&#8217;t have dreamweaver it is still pretty straight forward.  If you don&#8217;t have dreamweaver then you can <a title="Spry Download" href="http://labs.adobe.com/technologies/spry/" target="_blank">download Spry here</a>.<br />
<a title="Spry Accordion" href="http://labs.adobe.com/technologies/spry/samples/accordion/AccordionSample.html" target="_blank"><img class="alignnone size-full wp-image-343" title="spry" src="http://webtecker.com/wp-content/uploads/2008/06/spry.jpg" alt="" width="315" height="124" /></a></li>
</ul>
<p>If you know of any other Accordion scripts that are not here please comment.  Thank you for your continued support.</p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=335&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/06/19/accordion-scripts/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>10 Free Chart Scripts</title>
		<link>http://webtecker.com/2008/06/12/10-free-chart-scripts/</link>
		<comments>http://webtecker.com/2008/06/12/10-free-chart-scripts/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 23:42:37 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Chart]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Prototype]]></category>

		<guid isPermaLink="false">http://webtecker.com/?p=323</guid>
		<description><![CDATA[This week I&#8217;ve been working on a project that required data to be shown visually. I needed a Chart Script that was attractive yet gets the data across. The Charts scripts below are built using JavaScript, Flash, Silverlight, and Java. Flot &#8211; Flot is a pure Javascript plotting library for jQuery. The focus is on [...]]]></description>
			<content:encoded><![CDATA[<p>This week I&#8217;ve been working on a project that required data to be shown visually.  I needed a Chart Script that was attractive yet gets the data across.  The Charts scripts below are built using JavaScript, Flash, Silverlight, and Java.</p>
<ul>
<li><strong><a title="Flot" href="http://code.google.com/p/flot/" target="_blank">Flot</a></strong> &#8211; Flot is a pure Javascript plotting library for <a rel="nofollow" href="http://jquery.com/">jQuery</a>.   The focus is on easy usage , attractive plots and interactive features.  With Flot you can interact with the data, look at specific data by zooming in, plot a time series, and other various options.<br />
<a title="flot" href="http://code.google.com/p/flot/" target="_blank"><img class="alignnone size-full wp-image-325" title="flot" src="http://webtecker.com/wp-content/uploads/2008/06/flot.jpg" alt="" width="325" height="100" /></a></li>
<li><strong><a title="Open Flash Chart Open Source Charting Component" href="http://teethgrinder.co.uk/open-flash-chart/" target="_blank">Open Flash Chart</a></strong> &#8211; Open Flash Chart is a Flash charting component.   It is fairly easy to setup and has classes written in PHP, Perl, Python, Java, Ruby on Rails, and .Net to connect to the Chart. You can create some really nice looking Bar Charts, Pie Charts, Area Charts and etc…<br />
<a title="Open Flash Chart" href="http://teethgrinder.co.uk/open-flash-chart/" target="_blank"><img class="alignnone size-full wp-image-326" title="open-flash-chart" src="http://webtecker.com/wp-content/uploads/2008/06/open-flash-chart.png" alt="" width="480" height="142" /></a></li>
<li><strong><a title="AmCharts" href="http://www.amcharts.com/" target="_blank">AmCharts</a></strong> &#8211; AmCharts are animated interactive flash charts.  The charts include Pie Charts, Line Charts, Scatter/Bubble Charts, Bar/Column Charts, and even a stock chart.  AmCharts can extract data from simple CSV<strong> </strong>or XML files, or they can read dynamic data generated with PHP, .NET, Java, Ruby on Rails, Perl and ColdFusion.  All the charts are free but they have a link to AmCharts on the upper left.<br />
<a title="AmCharts" href="http://www.amcharts.com/" target="_blank"><img class="alignnone size-full wp-image-327" title="amcharts" src="http://webtecker.com/wp-content/uploads/2008/06/amcharts.jpg" alt="" width="400" height="170" /></a></li>
<li><strong><a title="Emprise Javascript Charts" href="http://www.ejschart.com/" target="_blank">Emprise JavaScript Charts</a></strong> &#8211; Emprise JavaScript Charts is a 100% Pure JavaScript Charting Solution that requires no JavaScript frameworks. Emprise JavaScript Charts include  Line, Area, Scatter, Pie, Bar charts with zooming, scaling and scrolling ability.  Tested and works with all major browsers.<br />
<a title="Emprise JavaScript Charts" href="http://www.ejschart.com/" target="_blank"><img class="alignnone size-full wp-image-328" title="javascript-charts" src="http://webtecker.com/wp-content/uploads/2008/06/javascript-charts.jpg" alt="" width="325" height="100" /></a></li>
<li><strong><a title="Plotkit" href="http://www.liquidx.net/plotkit/" target="_blank">PlotKit</a></strong> &#8211; PlotKit is a Chart and Graph Plotting Library for Javascript.  PlotKit works with <a title="Mochikit" href="http://www.mochikit.com/" target="_blank">MochiKit</a> javascript library. It has support for HTML Canvas and also SVG via Adobe    SVG Viewer and native browser support.  PlotKit also has great documentation.<br />
<a title="Plotkit" href="http://www.liquidx.net/plotkit/" target="_blank"><img class="alignnone size-full wp-image-329" title="plotkit" src="http://webtecker.com/wp-content/uploads/2008/06/plotkit.jpg" alt="" width="325" height="100" /></a></li>
<li><strong><a title="Flotr" href="http://solutoire.com/flotr/" target="_blank">Flotr</a></strong> &#8211;  Flotr is a javascript plotting library based on the <a href="http://prototypejs.org/">Prototype</a> Framework version 1.6.0.2.  Flotr lets you create graphs in modern browsers with features like legend support, negative value support, mouse tracking, selection support, zoom support, event hooks, CSS styling support and much more.<br />
<a title="Flotr" href="http://solutoire.com/flotr/" target="_blank"><img class="alignnone size-full wp-image-330" title="flotr" src="http://webtecker.com/wp-content/uploads/2008/06/flotr.jpg" alt="" width="295" height="150" /></a></li>
<li><strong><a title="PHP SWF Charts" href="http://www.maani.us/charts/index.php" target="_blank">PHP/SWF Charts</a></strong> &#8211; PHP/SWF Charts is simple yet powerful tool to create attractive web charts and graphs from dynamic data.  You use PHP to gather the data and put it into flash.  It supports many charts types, Line, Column, Stacked column, Floating column, 3D column, Stacked 3D column, Parallel 3D column, Pie, 3D Pie, Bar, Stacked bar, Floating bar, Area, Stacked area, Candlestick, Scatter, Polar, Mixed, Composite and Joined. These Charts have some great features like Animated transitions, Printable charts, and more.<br />
<a title="PHP SWF Charts" href="http://www.maani.us/charts/index.php" target="_blank"><img class="alignnone size-full wp-image-331" title="php swf" src="http://webtecker.com/wp-content/uploads/2008/06/phpswf.jpg" alt="" width="325" height="100" /></a></li>
<li> <strong><a title="visifire" href="http://www.visifire.com/" target="_blank">Visifire</a> </strong> &#8211; Visifire (Powered by Silverlight) is a set of open source data visualization components. With Visifire you can create animated Silverlight Charts with ASP, ASP.Net, PHP, JSP, ColdFusion, Ruby on Rails or just simple HTML.<br />
<a title="Visifire" href="http://www.visifire.com/" target="_blank"><img class="alignnone size-full wp-image-332" title="visifire" src="http://webtecker.com/wp-content/uploads/2008/06/visifire.jpg" alt="" width="380" height="230" /></a></li>
<li><strong><a title="FusionCharts Free Flash Charts" href="http://www.fusioncharts.com/Free/" target="_blank">FusionCharts</a></strong> &#8211; FusionCharts  is a cross-browser and cross-platform flash charting component that can be used with ASP.NET, ASP, PHP, JSP, ColdFusion, Ruby on Rails, simple HTML pages or even PowerPoint Presentations. All you need to know is the language you’re programming in.<br />
<a title="FusionCharts" href="http://www.fusioncharts.com/Free/" target="_blank"><img class="alignnone size-full wp-image-333" title="fusioncharts" src="http://webtecker.com/wp-content/uploads/2008/06/fusioncharts.jpg" alt="" width="301" height="150" /></a></li>
<li><strong><a title="JFreeChart - Free Java Chart Library" href="http://www.jfree.org/jfreechart/" target="_blank">JFreeChart</a></strong> &#8211; JFreeChart is an open source Java chart library that makes it easy for developers to display quality charts in their applications.  The JFreeChart project was founded seven years ago, in February 2000, by David Gilbert and is used by approximately 40,000 to 50,000 developers.  JFreeChart supports many different output types that includes JPEG, GIF, PDF, EPS and SVG.  This is a great resource for Java developers.<br />
<a title="JFreeChart" href="http://www.jfree.org/jfreechart/" target="_blank"><img class="alignnone size-full wp-image-334" title="java" src="http://webtecker.com/wp-content/uploads/2008/06/java.jpg" alt="" width="400" height="117" /></a></li>
</ul>
<p>If you know of any other Charting Scripts please post below.</p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=323&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/06/12/10-free-chart-scripts/feed/</wfw:commentRss>
		<slash:comments>111</slash:comments>
		</item>
		<item>
		<title>Beginner jQuery Tutorials</title>
		<link>http://webtecker.com/2008/06/02/beginner-jquery-tutorials/</link>
		<comments>http://webtecker.com/2008/06/02/beginner-jquery-tutorials/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 20:59:17 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://webtecker.com/?p=317</guid>
		<description><![CDATA[Hey Everyone! Sorry I haven&#8217;t been around posting last week. I&#8217;ve been really busy with freelance gigs and I haven&#8217;t had time to get to posting. Anyway one of my clients last week required some major Javascript/Ajax coding. I decided to go with the jQuery Framework since I&#8217;ve never used it and I&#8217;ve heard great [...]]]></description>
			<content:encoded><![CDATA[<p>Hey Everyone! Sorry I haven&#8217;t been around posting last week.  I&#8217;ve been really busy with freelance gigs and I haven&#8217;t had time to get to posting.  Anyway one of my clients last week required some major Javascript/Ajax coding.  I decided to go with the jQuery Framework since I&#8217;ve never used it and I&#8217;ve heard great things.  The tutorials below are a great ways to start learning jQuery.</p>
<ul>
<li><a title="15 Days of JQuery" href="http://15daysofjquery.com/" target="_blank">15 Days of jQuery</a> &#8211; This site has some great jQuery tutorials with example code.  If you are just starting out with jQuery this is great place to start.</li>
<li><a title="Learning jQuery" href="http://www.learningjquery.com/" target="_blank"><img class="alignnone size-full wp-image-318" title="learning-jquery" src="http://webtecker.com/wp-content/uploads/2008/06/learning-jquery.jpg" alt="" width="382" height="54" /></a> &#8211; Learning jQuery is a great blog with tutorials/examples from basic to advanced skill level.</li>
<li><a title="jQuery For Designers" href="http://jqueryfordesigners.com/category/tutorials/" target="_blank">jQuery for Designers</a> &#8211; Has some great tutorials showing you more intermediate tutorials. jQuery For designers is a great site you should check it out.</li>
<li><a title="How jQuery Works" href="http://docs.jquery.com/Tutorials:How_jQuery_Works" target="_blank">How jQuery Works</a> &#8211; A great tutorial about the basics of jQuery</li>
<li><a title="jQuery Tutorials for Designers" href="http://www.webdesignerwall.com/tutorials/jquery-tutorials-for-designers/" target="_blank">jQuery Tutorials for Designers</a> &#8211; This is a excellent post by Web Designer Wall that contains 10 visual tutorials on jQuery.<br />
<a title="jQuery Tutorials for Designers" href="http://www.webdesignerwall.com/tutorials/jquery-tutorials-for-designers/" target="_blank"><img class="alignnone size-full wp-image-319" title="webdesignerwall-tut" src="http://webtecker.com/wp-content/uploads/2008/06/webdesignerwall-tut.gif" alt="" width="480" height="237" /></a></li>
<li><a title="jQuery in 15 minutes" href="http://www.slideshare.net/simon/jquery-in-15-minutes/" target="_blank">jQuery in 15 minutes</a> &#8211; This slideshow is a very good intro to jquery.  I&#8217;ve embedded the slide show below.
<div id="__ss_88304" style="width: 425px; text-align: left;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=jquery-in-15-minutes1421" /><embed type="application/x-shockwave-flash" width="425" height="355" src="http://static.slideshare.net/swf/ssplayer2.swf?doc=jquery-in-15-minutes1421" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;"><a href="http://www.slideshare.net/?src=embed"><img style="border:0px none;margin-bottom:-5px" src="http://static.slideshare.net/swf/logo_embd.png" alt="SlideShare" /></a> | <a title="View jQuery in 15 minutes on SlideShare" href="http://www.slideshare.net/simon/jquery-in-15-minutes?src=embed">View</a> | <a href="http://www.slideshare.net/upload?src=embed">Upload your own</a></div>
</div>
</li>
<li><a title="jQuery Cheat Sheet" href="http://colorcharge.com/jquery/" target="_blank">jQuery Cheat Sheet</a> &#8211; This is a great Cheat sheet that is available on your iphone or ipod and is also in png format.  It goes over just about everything and is a great to have nearby.<br />
<a title="jQuery Cheat Sheet" href="http://colorcharge.com/jquery/"><img class="alignnone size-full wp-image-320" title="jquery" src="http://webtecker.com/wp-content/uploads/2008/06/jt21.gif" alt="" width="442" height="153" /></a></li>
</ul>
<p>If you have more tutorials that have helped you learn jQuery please comment below</p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=317&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/06/02/beginner-jquery-tutorials/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>Programing Cheat Sheets</title>
		<link>http://webtecker.com/2008/04/14/programing-cheat-sheets/</link>
		<comments>http://webtecker.com/2008/04/14/programing-cheat-sheets/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 03:27:27 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[Cheat Sheets]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://webtecker.com/?p=185</guid>
		<description><![CDATA[After learning a few programing languages it gets hard remembering all of the functions and properties that programing languages come with. Below is a list of Cheat sheets to make your coding experience much easier and faster. The list is categorized by languages. ActionScript ActionScript Cheat Sheet &#8211; Covers everything from ActionScript 2.0 to ActionScript [...]]]></description>
			<content:encoded><![CDATA[<p>After learning a few programing languages it gets hard remembering all of the functions and properties that programing languages come with.  Below is a list of Cheat sheets to make your coding experience much easier and faster.  The list is categorized by languages.</p>
<h3>ActionScript</h3>
<ul>
<li><a title="ActionScript Cheat Sheet" href="http://actionscriptcheatsheet.com/blog/quick-referencecheatsheet-for-actionscript-20" target="_blank"><strong>ActionScript Cheat Sheet</strong></a> &#8211; Covers everything from ActionScript 2.0 to ActionScript 3.0 and Even Adobe AIR.</li>
</ul>
<h3>Ajax/JavaScript Frameworks</h3>
<ul>
<li><strong><a title="Prototype Cheat Sheet" href="http://www.snook.ca/archives/javascript/prototype_1_5_0_cheatsheet/" target="_blank">Prototype Cheat Sheet</a></strong> &#8211; Detailed methods and properties of each of the modules within the Prototype JavaScript library.</li>
<li><a href="http://slash7.com/cheats/scriptaculous_fx1.pdf"><strong>Scriptaculous Cheat Sheet</strong></a> &#8211; List of the Effects.</li>
<li><a title="MooTools Cheat Sheet" href="http://mediavrog.net/blog/2007/06/15/mootools/mootools-cheat-sheet/" target="_blank"><strong>MooTools Cheat Sheet</strong></a> &#8211; Details of the MooTools Library.</li>
<li><strong><a title="jQuery Cheat Sheet" href="http://www.gscottolson.com/weblog/2008/01/11/jquery-cheat-sheet/" target="_blank">jQuery Cheat Sheet</a></strong> &#8211; Details of the jQuery Library version 1.2.x.</li>
<li><a title="YUI Cheat Sheet" href="http://developer.yahoo.com/yui/" target="_blank"><strong>YUI Cheat Sheet</strong></a> &#8211; This cheat sheet is straight from Yahoo and the download link is at the bottom of the page or you can download the zip file <a title="Cheat Sheet" href="http://developer.yahoo.com/yui/docs/assets/cheatsheets.zip" target="_blank">here</a>.</li>
</ul>
<h3>ASP</h3>
<ul>
<li><a title="ASP/VBScript Cheat Sheet" href="http://www.ilovejackdaniels.com/cheat-sheets/asp-vbscript-cheat-sheet/" target="_blank"><strong>ASP/VBScript Cheat Sheet</strong></a> &#8211; Everything you want or need to know about ASP and VBScript.</li>
</ul>
<h3>CSS</h3>
<ul>
<li><strong><a href="http://refcards.com/docs/deepx/css1/CSS1.pdf" target="_blank">CSS level 1</a></strong> &#8211; Includes Fonts, Backgrounds, Text, Box, and Units</li>
<li><strong><a href="http://refcards.com/docs/jungb/css2/css2.pdf" target="_blank">CSS level 2</a></strong> &#8211; Includes Box Model, Print, Fonts, Visual Effects, Pseudo Classes and Elements.</li>
<li><strong><a href="http://www.veign.com/downloads/guides/qrg0007.pdf" target="_blank">CSS 2 Quick Reference Guide </a></strong> &#8211; Shows you examples on how to use a wide variety of classes</li>
<li><strong><a title="CSS Cheat Sheet" href="http://www.ilovejackdaniels.com/cheat-sheets/css-cheat-sheet/" target="_blank">CSS Cheat Sheet </a></strong> &#8211; Lists all selectors (as of CSS 2.1) and properties.</li>
<li><strong><a href="http://www.blooberry.com/indexdot/css/propindex/all.htm" target="_blank">CSS Property Index</a></strong> &#8211; Lists all CSS Properties Alphabetically</li>
<li><strong><a href="http://www.dustindiaz.com/css-shorthand/" target="_blank">CSS Shorthand Guide</a></strong> &#8211; A fairly detailed guide of CSS Shorthand properties</li>
</ul>
<h3>C# and VB.NET</h3>
<ul>
<li><strong><a href="http://aspalliance.com/625" target="_blank">C# and VB.NET Comparison Cheat Sheet</a></strong> &#8211; Cheat sheet that highlights some key syntactical differences between C# and VB.NET.</li>
<li><strong><a title="C# Basic Reference Sheet" href="http://www.dreamincode.net/downloads/ref_sheets/csharp_basics_reference_sheet.pdf" target="_blank">C# Basic Reference Sheet</a></strong> &#8211; A Brief Cheat sheet to give you the basics of C#.</li>
<li><a title="VB.NET Basic Reference Sheet" href="http://www.dreamincode.net/downloads/ref_sheets/vbnet_basics_reference_sheet.pdf" target="_blank"><strong>VB.NET Basic Reference Sheet</strong></a> &#8211; A Brief Cheat sheet to give you the basics of VB.NET.</li>
</ul>
<h3>C++</h3>
<ul>
<li><strong><a href="http://www.linuxsoftware.co.nz/cppcontainers.html" target="_blank">C++ Cheat Sheet</a></strong> &#8211; This Cheat Sheet shows a list of C++ Containers</li>
<li><strong><a href="http://downloads.dreamincode.net/ref_sheets/cpp_reference_sheet.pdf" target="_blank">C++ Quick Reference Sheet</a></strong> &#8211; Is a Basic Cheat Sheet that doesn&#8217;t go that in depth.</li>
</ul>
<h3>JavaScript</h3>
<ul>
<li><strong><a title="JavaScript Cheat Sheet" href="http://www.ilovejackdaniels.com/cheat-sheets/javascript-cheat-sheet/" target="_blank">JavaScript Cheat Sheet </a></strong> &#8211;  		The JavaScript cheat sheet is designed to act as a reminder and reference sheet, listing methods and functions of JavaScript.</li>
<li><strong><a title="JavaScript Quick Reference" href="http://www.dannyg.com/ref/jsquickref.html" target="_blank">JavaScript Quick Reference</a></strong> &#8211; Consists of the JavaScript and Browser Objects Quick Reference.</li>
<li><a href="http://www.visibone.com/regular-expressions/"><strong>Regular Expressions for JavaSript</strong></a> &#8211;  Excerpts of the VisiBone JavaScript references</li>
</ul>
<h3>SQL</h3>
<ul>
<li><a title="SQL Cheat Sheet" href="http://www.3gwt.net/demo/SQL_redux.html" target="_blank"><strong>SQL Cheat Sheet</strong></a> &#8211; A very Basic SQL Cheat sheet but gives you all the necessary data.</li>
<li><a title="SQL Server Cheat Sheet" href="http://www.ilovejackdaniels.com/cheat-sheets/sql-server-cheat-sheet/" target="_blank"><strong>SQL Server Cheat Sheet</strong></a> &#8211; Cheat Sheet to Microsoft&#8217;s SQL Server.</li>
<li><a title="MySQL Cheat Sheet" href="http://www.ilovejackdaniels.com/cheat-sheets/mysql-cheat-sheet/" target="_blank"><strong>MySQL Cheat Sheet</strong></a> &#8211;  A quick reference guide for MySQL, including functions (both in MySQL and PHP), data types, and sample queries.</li>
</ul>
<h3>PHP</h3>
<ul>
<li><strong><a title="PHP Cheat Sheet" href="http://www.ilovejackdaniels.com/cheat-sheets/php-cheat-sheet/" target="_blank">PHP Cheat Sheet</a></strong> &#8211; This is an in depth cheat sheet for PHP.</li>
<li><a title="PHP Reference Sheet" href="http://www.dreamincode.net/downloads/ref_sheets/php_reference_sheet.pdf" target="_blank"><strong>PHP Reference Sheet</strong></a> &#8211; This Sheet gives you basic functions for PHP but useful.</li>
</ul>
<p>If you have any more to add to this list than please comment below.  Also if you would like other languages added please comment below</p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=185&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/04/14/programing-cheat-sheets/feed/</wfw:commentRss>
		<slash:comments>40</slash:comments>
		</item>
		<item>
		<title>List of JavaScript Tab Navigation Scripts</title>
		<link>http://webtecker.com/2008/03/31/list-of-javascript-tab-navigation/</link>
		<comments>http://webtecker.com/2008/03/31/list-of-javascript-tab-navigation/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 04:04:49 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[mootools]]></category>
		<category><![CDATA[Navigation]]></category>
		<category><![CDATA[Prototype]]></category>
		<category><![CDATA[Tabs]]></category>
		<category><![CDATA[YUI]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/03/31/list-of-javascript-tab-navigation/</guid>
		<description><![CDATA[This past weekend I&#8217;ve been working on a free Premium WordPress theme for you. I was looking for a good tab navigation script to add to the theme. To allow for better navigation and to add a cool feature to the theme. I found a tons of tab scripts with various frameworks. The list below [...]]]></description>
			<content:encoded><![CDATA[<p>This past weekend I&#8217;ve been working on a free Premium WordPress theme for you.  I was looking for a good tab navigation script to add to the theme.  To allow for better navigation and to add a cool feature to the theme.  I found a tons of tab scripts with various frameworks.  The list below is some very good tab scripts.</p>
<ul>
<li><a href="http://www.kminek.pl/lab/yetii/" title="Yetii" target="_blank"><strong>Yetii</strong></a> &#8211; Yetii is an extremely light weight tab script.  It is built with no framework and is very easy to install.  You can even have a tab nested within another tab.<br />
<img src="http://webtecker.com/wp-content/uploads/2008/03/yetti.jpg" alt="Yetii" /></li>
<li><a href="http://extjs.com/deploy/ext-2.0-alpha1/examples/tabs/tabs-adv.html" title="Advanced Tabs" target="_blank"><strong>Advanced Tabs </strong></a>-  Advanced Tabs is an EXT JS plugin that allows you to add tabs, tab resizing, and tab scrolling.  The code has some very cool features.<br />
<img src="http://webtecker.com/wp-content/uploads/2008/03/advaced-tabs.jpg" alt="Advanced Tabs" /></li>
<li><a href="http://creativepony.com/journal/scripts/sliding-tabs/" title="Sliding Tabs" target="_blank"><strong>Sliding Tabs</strong></a> &#8211; Sliding Tabs is a mootools 1.11 plugin that shows the content slide over when you click on the tab or arrow button.  It is a really neat effect.<br />
<img src="http://webtecker.com/wp-content/uploads/2008/03/scrolling-tabs.jpg" alt="Scrolling Tabs" /></li>
<li><a href="http://www.onlinetools.org/tools/domtabdata/" title="DomTab" target="_blank"><strong>DOMTab</strong></a> &#8211; DOMtab is JavaScript that turns a list into a tabular content.  It is very lightweight and is  easy to implement.  It degrades very nicely if your visitor doesn&#8217;t allow javascript.  DOMtab does have some problems with divs inside the tab content but it is a great script.<br />
<img src="http://webtecker.com/wp-content/uploads/2008/03/domtab.jpg" alt="DOMTab" /></li>
<li><a href="http://www.ndoherty.com/demos/coda-slider/1.1.1/" title="Coda-Slider" target="_blank"><strong>Coda-Slider</strong></a> &#8211; Coda-Slider is a jQuery Plugin that slides the content over when you click on the tab or the arrow button.  It is a cool effect and is fairly easy to install on your site.<br />
<img src="http://webtecker.com/wp-content/uploads/2008/03/coda-slider.jpg" alt="Coda-Slider" /></li>
<li><a href="http://wiki.script.aculo.us/scriptaculous/show/Tabs" title="Scriptaculous Tabs" target="_blank"><strong>Scriptaculous Tabs</strong></a> &#8211; Scriptaculous tabs requires the use of obviously scriptaculous and prototype.  The script allows you to create interactive tabs for your site and the content box stretches as the more content you put into it.<br />
<img src="http://webtecker.com/wp-content/uploads/2008/03/scriptaculous.jpg" alt="Scriptaculous Tabs" /></li>
<li><a href="http://www.fueledsoftware.com/ajax-tabs-reloaded-based-on-the-havoc-studios-arti" title="Ajax Tabs" target="_blank"><strong>Ajax Tabs</strong></a> &#8211; Ajax Tabs is an easy to implement Dynamic CSS Tab. The user can add and remove tabs (and content) without refreshing the page.  It is a very cool concept but just needs some work to make it even better.<br />
<img src="http://webtecker.com/wp-content/uploads/2008/03/ajaxtabs.jpg" alt="Ajax Tabs" /></li>
<li><strong><a href="http://www.silverscripting.com/mootabs/" title="MooTabs">MooTabs</a></strong> &#8211;  MooTabs is a tiny(3kb) class for MooTools.  It&#8217;s main purpose is to help out with the creation of simple tab navigation.  The newest addition to MooTabs is that it now retrieves the content via ajax.  It is very easy to install and if you have MooTools than I suggest you check it out.<br />
<img src="http://webtecker.com/wp-content/uploads/2008/03/mootabs.jpg" alt="MooTabs" /></li>
<li><a href="http://developer.yahoo.com/yui/tabview/" title="YUI Tabs" target="_blank"><strong>TabView</strong></a> &#8211; TabView is built on Yahoo! UI library and is a good Tab navigation script.  It is pretty easy to implement and will allow you to create the same effect that is on Yahoo! homepage.<br />
<img src="http://webtecker.com/wp-content/uploads/2008/03/yahoo_tabs_script.JPG" alt="TabView" /></li>
<li><strong><a href="http://www.barelyfitz.com/projects/tabber/" title="Javascript Tabifier" target="_blank">JavaScript Tabifier</a></strong> &#8211; JavaScript Tabifier converts your lists into a tabbed navigation.  It is built with no framework and gracefully degrades if JavaScript is not present.  With JavaScript Tabifier you can have a tab within a tab and you can use a cookie to remember which tab was selected so it remains selected when you return to the page.<br />
<img src="http://webtecker.com/wp-content/uploads/2008/03/tabifier_script.JPG" alt="JavaScript Tabifier" /></li>
</ul>
<p>If you have any you would like to add or have used some of the above scripts please comment below.</p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=155&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/03/31/list-of-javascript-tab-navigation/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Collection of Web Based Text Editors</title>
		<link>http://webtecker.com/2008/03/29/collection-of-web-based-text-editors/</link>
		<comments>http://webtecker.com/2008/03/29/collection-of-web-based-text-editors/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 19:36:28 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[RTE]]></category>
		<category><![CDATA[TextArea Edit]]></category>
		<category><![CDATA[WYSIWYG]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/03/29/collection-of-web-based-text-editors/</guid>
		<description><![CDATA[Over the past few years I&#8217;ve been using FCKeditor as my internet text editor. I&#8217;ve recently been having some problems with FCKeditor because it is just to slow for some users. So I decided to look for a different editor. Now don&#8217;t get me wrong FCKeditor is a great text editor with so many features [...]]]></description>
			<content:encoded><![CDATA[<p>Over the past few years I&#8217;ve been using <a href="http://www.fckeditor.net/" title="FCKeditor" target="_blank">FCKeditor</a> as my internet text editor.  I&#8217;ve recently been having some problems with FCKeditor because it is just to slow for some users.  So I decided to look for a different editor.  Now don&#8217;t get me wrong FCKeditor is a great text editor with so many features and it works with so many programing languages.  But it was getting to the point for me that it just has so many features that I don&#8217;t use and it has ugly HTML markup that I decided to change.</p>
<p>Below is a list of Text Editors that I found.</p>
<ul>
<li><a href="http://tinymce.moxiecode.com/index.php" title="TinyMCE" target="_blank"><strong>TinyMCE</strong></a> &#8211; TinyMCE is a platform independent web based Javascript HTML WYSIWYG editor.   TinyMCE is very easy to integrate and use.  It also has very good HTML markup. I decided to Switch to this editor. <a href="http://tinymce.moxiecode.com/index.php" title="TinyMCE" target="_blank"><img src="http://webtecker.com/wp-content/uploads/2008/03/11.jpg" alt="TinyMCE" border="0" /></a></li>
<li><a href="http://www.avidansoft.com/scripts" title="Damn Small Rich Text Editor" target="_blank"><strong>Damn Small Rich Text Editor</strong></a> &#8211; DSRTE is a very small text editor script that works by creating an Iframe element.  DSRTE works on top of the jQuery framework.  It is very easy to implement all you need is the jQuery library, a Javascript and a CSS file.  One of my favorite parts is that it has a resizable text area.<br />
<img src="http://webtecker.com/wp-content/uploads/2008/03/damn.jpg" alt="DSRTE" /></li>
<li><a href="http://projects.bundleweb.com.ar/jWYSIWYG/" title="jWYSiWYG" target="_blank"><strong>jWYSIWYG</strong></a> &#8211; JWYSIWYG is a jQuery Plugin to editing rich HTML content on the fly.  It is a very small file less than 26kb.  I like this editor because it doesn&#8217;t have tons of features and it is just the basics.<br />
<img src="http://webtecker.com/wp-content/uploads/2008/03/jwajdjd.jpg" alt="jWYSIWYG" /></li>
<li><a href="http://nicedit.com/index.php" title="NiceEdit" target="_blank"><strong>NicEdit</strong></a> &#8211; NicEdit is a WYSIWYG editor for websites. NicEdit is extremely lightweight and can be easily integrated in any site.  NicEdit doesn&#8217;t have the best markup but it is very fast and doesn&#8217;t overload you with tons of features.<br />
<a href="http://nicedit.com/index.php" title="NiceEdit" target="_blank"><img src="http://webtecker.com/wp-content/uploads/2008/03/2.JPG" alt="NiceEdit" border="0" /></a></li>
<li><a href="http://www.unverse.net/whizzywig-cross-browser-html-editor.html" title="Whizzywig" target="_blank"><strong>Whizzywig</strong></a> &#8211; Whizzywig is a completely free web based text editor.  It is written in javascript and is very easy to implement.  Whizzywig runs very smoothly and is cross browser compatible.<br />
<a href="http://www.unverse.net/whizzywig-cross-browser-html-editor.html" title="Whizzywig" target="_blank"><img src="http://webtecker.com/wp-content/uploads/2008/03/31.jpg" alt="Whizzywig" border="0" /></a></li>
<li> 			<a href="http://www.themaninblue.com/experiment/widgEditor/" title="widgEditor" target="_blank"><strong> 			widgEditor</strong></a> &#8211; widgEditor is an easily installed, easily customizable WYSIWYG editor for simple content.  It is written in javascript and is very simple.  It doesn&#8217;t have that many features but it is very fast and works well.<br />
<img src="http://webtecker.com/wp-content/uploads/2008/03/41.jpg" alt="widgEditor" /></li>
<li><strong><a href="http://blog.slajax.com/2007/04/26/mooedit-v-1/" title="sLedit" target="_blank">sLedit</a></strong> -sLedit is an in place rich text editor using Mootools.  The code works very fast.  I really enjoy this script because it is an edit in place text editor.  You must check this out. The only thing that is a bummer is the installation is annoying.<br />
<img src="http://webtecker.com/wp-content/uploads/2008/03/51.jpg" alt="sLedit" /></li>
<li><a href="http://developer.yahoo.com/yui/editor/" title="Yahoo! UI Text Editor" target="_blank"><strong>Yahoo! UI Text Editor</strong></a> &#8211; YUI Text Editor is a text editor that is based on the Yahoo UI library.  It has many different options and features that you can choose from.  You can go from a very simple and basic text editor to an advanced editor.  You can  even customize it.<br />
<img src="http://webtecker.com/wp-content/uploads/2008/03/61.jpg" alt="YUI Text Editor" /></li>
</ul>
<p>If you have any more that you use please comment below. Thanks.</p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=146&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/03/29/collection-of-web-based-text-editors/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>7 Password Strength Scripts</title>
		<link>http://webtecker.com/2008/03/26/collection-of-password-strength-scripts/</link>
		<comments>http://webtecker.com/2008/03/26/collection-of-password-strength-scripts/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 21:05:38 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Password Strength]]></category>
		<category><![CDATA[Prototype]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/03/26/collection-of-password-strength-scripts/</guid>
		<description><![CDATA[Today password strength is extremely important to keep your data secure. As web developers/designers we need a way to show our users the strength of their password. Below is a list that will allow you to add a Password Strength meter to your website. Password Strength Meter like Google &#8211; This script is built with [...]]]></description>
			<content:encoded><![CDATA[<p>Today password strength is extremely important to keep your data secure.  As web developers/designers we need a way to show our users the strength of their password.  Below is a list that will allow you to add a Password Strength meter to your website.</p>
<ul>
<li><strong><a href="http://www.codeandcoffee.com/2007/07/16/how-to-make-a-password-strength-meter-like-google-v20/" title="Password stength meter" target="_blank">Password Strength Meter like Google</a></strong> &#8211;  This script is built with no framework. It works based on a point value that as you use different variations of letters, numbers and symbols your password will be stronger.  This script is completely free to use on any project you wish.<br />
<a href="http://www.codeandcoffee.com/2007/07/16/how-to-make-a-password-strength-meter-like-google-v20/" title="Password stength meter" target="_blank"><img src="http://webtecker.com/wp-content/uploads/2008/03/1.jpg" alt="Password Strength Meter Like Google" border="0" /></a></li>
<li><a href="http://testcases.pagebakers.com/PasswordMeter/" title="PasswordMeter" target="_blank"><strong>Password Meter</strong></a> &#8211; Password Meter is built on top of the EXT JavaScript library.  It has a very nice animated meter that goes up as you type.  It does all of the normal checking of the different variations of upper/lower case letters, numbers and symbols.<br />
<a href="http://testcases.pagebakers.com/PasswordMeter/" title="PasswordMeter" target="_blank"><img src="http://webtecker.com/wp-content/uploads/2008/03/2.jpg" alt="PasswordMeter" border="0" /></a></li>
<li><strong><a href="http://www.passwordmeter.com/" title="Password Strength Meter" target="_blank">Password Strength Meter</a></strong> &#8211; This Password Strength Meter is based on a point system.  Its main goal is to help the end user with a stronger password.  It is very detailed and it might be over detailed but it is one of the best I&#8217;ve seen.  It is also written with no framework.<br />
<a href="http://www.passwordmeter.com/" title="Password Strength Meter" target="_blank"><img src="http://webtecker.com/wp-content/uploads/2008/03/3.jpg" alt="PasswordMeter" border="0" /></a></li>
<li><a href="http://www.passwordmeter.com/" title="ColdFusion PSW" target="_blank"><strong>ColdFusion Password Strength</strong></a> &#8211; This Password Strength meter works fairly well.  When you first type in the password field it tells you what you need to make a strong password.  Since I haven&#8217;t seen another ColdFusion Password Strength scripts I think this would be a nice add for ColdFusion Developers.<br />
<a href="http://www.passwordmeter.com/" title="ColdFusion PSW" target="_blank"><img src="http://webtecker.com/wp-content/uploads/2008/03/4.jpg" alt="ColdFusion Password Strength" border="0" /></a></li>
<li><a href="http://ajaxorized.com/?p=14" title="Password Strength Meter" target="_blank"><strong>Prototype/Scriptaculous Password Strength Meter</strong></a> &#8211;  This script is written with prototype and scriptaculous.  It is a very strong password strength script works very similar to all the others.  It uses a point system to calculate the strength of your password.<br />
<a href="http://ajaxorized.com/?p=14" title="Password Strength Meter" target="_blank"><img src="http://webtecker.com/wp-content/uploads/2008/03/5.jpg" alt="Prototype Password Strength Meter" border="0" /></a></li>
<li><strong><a href="http://phiras.wordpress.com/2007/04/08/password-strength-meter-a-jquery-plugin/" title="JQuery Password Strength Meter" target="_blank">JQuery Password Strength Meter</a></strong> &#8211; Password Strength Meter is a jQuery plug-in that provides a smart algorithm to detect a passwords strength.  The  Password strength works on a point structure that if you pass a certain test than more points will be added and in turn your password will be more secure.<br />
<img src="http://webtecker.com/wp-content/uploads/2008/03/6.jpg" alt="JQuery Password Strength Meter" /></li>
<li><a href="http://simplythebest.net/scripts/ajax/ajax_password_strength.html" title="Jquery Psw Strength Meter" target="_blank"><strong>Another JQuery Password Strength Meter</strong></a> &#8211; JQuery password strength meter is a small plugin to jQuery that provides an  easy way to show the strength of a user&#8217;s (intended) password.  It is very easy to implement and I think you should check it out.<br />
<a href="http://simplythebest.net/scripts/ajax/ajax_password_strength.html" title="JQuery Psw Strength Meter" target="_blank"><img src="http://webtecker.com/wp-content/uploads/2008/03/7.jpg" alt="JQuery Psw strength" border="0" /></a></li>
</ul>
<p>If you have any more scripts please comment below.</p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=138&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/03/26/collection-of-password-strength-scripts/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>List of Ajax form Validators</title>
		<link>http://webtecker.com/2008/03/17/list-of-ajax-form-validators/</link>
		<comments>http://webtecker.com/2008/03/17/list-of-ajax-form-validators/#comments</comments>
		<pubDate>Mon, 17 Mar 2008 23:43:16 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[]]></category>
		<category><![CDATA[Form Validation]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/03/17/list-of-ajax-form-validators/</guid>
		<description><![CDATA[First off I&#8217;d Like to say Happy St. Patrick&#8217;s Day!!! Inputing correct data into any web application or website is very important. There is two different ways to validate forms by either Server-side or Client-side. The list below is Client-Side Ajax Form Validator. mooTools Framework fValidator &#8211; is built over MooTools v1.1 and it supports [...]]]></description>
			<content:encoded><![CDATA[<p>First off I&#8217;d Like to say Happy St. Patrick&#8217;s Day!!!  Inputing correct data into any web application or website is very important.  There is two different ways to validate forms by either Server-side or Client-side.  The list below is Client-Side Ajax Form Validator.<br />
<em><strong>mooTools Framework</strong></em></p>
<ul>
<li><a href="http://zendold.lojcomm.com.br/fvalidator/" title="fValidator" target="_blank"><strong>fValidator</strong></a> &#8211; is built over MooTools v1.1 and it supports Multiple forms per page supported. fValidator is compatible and tested in Internet Explorer, Firefox (and its mozilla friends), Opera and Safari</li>
<li><a href="http://moo.floor.ch/docs/files/formcheck-js.html" title="FormCheck" target="_blank"><strong>FormCheck</strong></a> &#8211; Works with these types of fields input (text, radio, checkbox),textarea, select.  FormCheck is built with MooTools v1.1<br />
<img src="http://webtecker.com/wp-content/uploads/2008/03/moo.JPG" alt="mooTools" /></li>
</ul>
<p><em><strong>jQuery Framework</strong></em></p>
<ul>
<li><a href="http://bassistance.de/jquery-plugins/jquery-plugin-validation/" title="jQuery Plugin Validation" target="_blank"><strong>jQuery Plugin: Validation</strong></a> &#8211; is Built with the jQuery 1.2.2+.   It works with all the standard form inputs.</li>
<li><a href="http://www.willjessup.com/sandbox/jquery/form_validator/form_validate.html" title="simple jQuery form validation" target="_blank"><strong>Simple jQuery form validation</strong></a> &#8211; This form validator is pretty easy to implement and is built with jQuery.  Since the link doesn&#8217;t have a download you can download it here <a href="http://www.willjessup.com/sandbox/jquery/form_validator/val.js" title="download" target="_blank">http://www.willjessup.com/sandbox/jquery/form_validator/val.js<br />
</a><img src="http://webtecker.com/wp-content/uploads/2008/03/jquery.jpg" alt="jQuery" /><a href="http://www.willjessup.com/sandbox/jquery/form_validator/val.js" title="download" target="_blank"><br />
</a></li>
</ul>
<p><em><strong>Prototype Framework</strong></em></p>
<ul>
<li><a href="http://www.livevalidation.com/" title="LiveValidation" target="_blank"><strong>LiveValidation</strong></a> &#8211; First I want to let you know that this has two versions a prototype version and a standalone version. The Prototype version works great with prototype.  LiveValidation is a small open source javascript library for making client-side validation quick, easy, and powerful.  It is tested and works in most modern browsers.</li>
<li><a href="http://www.jsvalidate.com/" title="JSValidate" target="_blank"><strong>JSValidate</strong></a> &#8211; JSValidate is a form validator that uses  prototype and scriptaculous to bring you a very easy Javascript form validator. The only drawback is that its still in its beta versions.</li>
<li><a href="http://tetlaw.id.au/view/javascript/really-easy-field-validation" title="Field validation with prototype" target="_blank"><strong>Field validation with Prototype</strong></a> &#8211; A robust Javascript form validation library built with prototype and scriptaculous.  It has a number of tests built-in but is extensible to include your custom validation checks.<br />
<img src="http://webtecker.com/wp-content/uploads/2008/03/prototype.JPG" alt="Prototype" /></li>
</ul>
<p><em><strong>Spry Framework</strong></em></p>
<ul>
<li><a href="http://labs.adobe.com/technologies/spry/demos/formsvalidation/index.html" title="Spry Validation Widge" target="_blank"><strong>Validation Widget </strong></a> &#8211; This Validator works fairly well.  It is very easy to implement with Dreamweaver CS3.  If you are not using Dreamweaver than you can download their Javascript elements.  The only problem I have with this is that every input element has its own external Javascript and CSS.</li>
</ul>
<p><em><strong>No Framework</strong></em></p>
<ul>
<li><a href="http://marcgrabanski.com/code/clean-form-validation/" title="Clean Form Validation" target="_blank"><strong>Clean Form Validation</strong></a> &#8211; Clean Form Validation is a very simple Javascript form validation and it is very easy to implement.</li>
<li><a href="http://www.mutationevent.com/projects/validate.js/exemples.php" title="validate.js" target="_blank"><strong>Validate.js</strong></a> &#8211; Validate.js is able to validate all sorts of data.  It is different from the rest of this list because of it has more ways to validate data, some of which could come in handy.</li>
<li><a href="http://www.livevalidation.com/" title="LiveValidation" target="_blank"><strong>LiveValidation</strong></a> &#8211; The standalone version works just as well as the prototype version. LiveValidation is a small open source javascript library for making client-side validation quick, easy, and powerful.<br />
<img src="http://webtecker.com/wp-content/uploads/2008/03/livevalidate.jpg" alt="LiveValidation" /></li>
</ul>
<p>If you have any to add to this list then please comment below.</p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=119&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/03/17/list-of-ajax-form-validators/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>List of Image Cropping Scripts</title>
		<link>http://webtecker.com/2008/03/14/list-of-image-cropping-scripts/</link>
		<comments>http://webtecker.com/2008/03/14/list-of-image-cropping-scripts/#comments</comments>
		<pubDate>Fri, 14 Mar 2008 18:59:31 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[image cropping script]]></category>
		<category><![CDATA[mootools]]></category>
		<category><![CDATA[Prototype]]></category>
		<category><![CDATA[Scriptaculous]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/03/14/list-of-image-cropping-scripts/</guid>
		<description><![CDATA[Updated March 24 After looking for awhile for a script that will crop your image in the browser I decided to put a list together. I found various types of scripts that will accomplish this. The list below is a list of image cropping scripts. cfImageCropper &#8211; This script is written in Coldfusion. The Demo [...]]]></description>
			<content:encoded><![CDATA[<p><em>Updated March 24</em></p>
<p>After looking for awhile for a script that will crop your image in the browser I decided to put a list together.  I found various types of scripts that will accomplish this.  The list below is a list of image cropping scripts.</p>
<ol>
<li><a href="http://cfimagecropper.riaforge.org/" title="cfImageCropper" target="_blank"><strong>cfImageCropper</strong></a> &#8211; This script is written in Coldfusion.  The Demo of this script works very well and the code is very simple to implement.</li>
<li><strong><a href="http://www.defusion.org.uk/code/javascript-image-cropper-ui-using-prototype-scriptaculous/" title="jsCropper" target="_blank">jsCropper</a></strong> &#8211; This javascript image cropping script is based on the <a href="http://prototype.conio.net/">Prototype JavaScript framework</a> and <a href="http://script.aculo.us/">script.aculo.us</a>.  jsCropper is one of my favorite copping script.  It is very easy to use and its a great unobtrusive script.  jsCropper has tons of great features you should check it out.</li>
<li><a href="http://www.artviper.net/crop.php" title="mooImageCrop" target="_blank"><strong>mooImageCrop</strong></a> &#8211; mooImageCrop is based on the mootools framework and php.  It is very easy to implement.</li>
<li><strong><a href="http://www.dhtmlgoodies.com/index.html?whichScript=image-crop" title="Image Crop" target="_blank">Image Crop</a></strong> &#8211; This is a great script written in Javascript and PHP.  It requires the install of ImageMagick server component.</li>
<li><strong><a href="http://www.ajaxprogrammer.com/?p=9" title="Ajax Image editor" target="_blank">Ajax Image Editor</a></strong> &#8211; Is a very powerful image editor script that allows you to crop, resize, and rotate the image.  It is fairly easy to implement and it isn&#8217;t written with any frameworks.</li>
<li><strong><a href="http://www.sephiroth.it/file_detail.php?pageNum_comments=10&amp;id=109#" title="Flash Image Crop" target="_blank">Flash Image Crop</a></strong> &#8211; Is a very nice flash image crop tool written in Actionscript and PHP.  The only problem I have with this script is that you have to use the space bar to accept the cropped area and not the enter key.  But overall it works very well.</li>
<li><strong><a href="http://flashrocket.worldoptimizer.com/article/23/flash-based-cropping-tool-released-lgpl" title="Flash Based Cropping too" target="_blank">Flash Based Cropping tool</a></strong> &#8211; This tool is also written in Actionscript and PHP is a very nice script.  You can also resize the image with this script.</li>
<li><a href="http://www.nwhite.net/MooCrop/" title="MooCrop" target="_blank"><strong>MooCrop</strong></a> -MooCrop is an Image Cropping utility that uses <a href="http://www.mootools.net/">mootools</a> javascript framework.  MooCrop works very fast and you can even edit the color of the mask.</li>
</ol>
<p>As more cropping tools become available I will be adding to this list.  If you have more to add now then please comment below.</p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=111&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/03/14/list-of-image-cropping-scripts/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Javascript and Flash Upload Library</title>
		<link>http://webtecker.com/2008/02/25/javascript-and-flash-upload-library/</link>
		<comments>http://webtecker.com/2008/02/25/javascript-and-flash-upload-library/#comments</comments>
		<pubDate>Mon, 25 Feb 2008 19:51:02 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[SWFUpload]]></category>
		<category><![CDATA[Upload]]></category>
		<category><![CDATA[Upload Library]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/02/25/javascript-and-flash-upload-library/</guid>
		<description><![CDATA[SWFUpload is a combination of JavaScript and Flash that provides advanced browser upload control. This includes an AJAX style upload with progress notifications, Multiple file selection, and upload control. This is an excellent library that is fairly easy to install. This is my favorite upload library it is very easy to edit and you will [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.swfupload.org/" title="SWFUpload">SWFUpload</a> is a combination of JavaScript and Flash that provides advanced browser upload control. This includes an AJAX style upload with progress notifications, Multiple file selection, and upload control.  This is an excellent library that is fairly easy to install.  This is my favorite upload library it is very easy to edit and you will be able to edit the style to fit your website.</p>
<p><a href="http://www.swfupload.org/" title="SWFUpload"><img src="http://webtecker.com/wp-content/uploads/2008/02/swf.jpg" alt="SWFUpload" border="0" /></a></p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=82&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/02/25/javascript-and-flash-upload-library/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Photoshop like DHTML Color Picker</title>
		<link>http://webtecker.com/2008/02/18/photoshop-like-dhtml-color-picker/</link>
		<comments>http://webtecker.com/2008/02/18/photoshop-like-dhtml-color-picker/#comments</comments>
		<pubDate>Mon, 18 Feb 2008 18:38:50 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/02/18/photoshop-like-dhtml-color-picker/</guid>
		<description><![CDATA[This is a light weight color picker that is very easy to use. It uses the least amount of code in comparison with it’s competitors: 3.5k of Javascript. DHTML Color Picker is one of the easiest scripts to use and I highly recommend it. It&#8217;s fully customizable and uses CSS and Javascript.]]></description>
			<content:encoded><![CDATA[<p>This is a light weight color picker that is very easy to use. It uses the least amount of code in comparison with it’s competitors: 3.5k of Javascript.  <a href="http://www.colorjack.com/software/dhtml+color+picker.html" title="DHTML Color Picker" target="_blank">DHTML Color Picker</a> is one of the easiest scripts to use and I highly recommend it.  It&#8217;s fully customizable and uses CSS and Javascript.</p>
<p style="text-align: center"><a href="http://www.colorjack.com/software/dhtml+color+picker.html" title="DHTML Color Picker" target="_blank"><img src="http://webtecker.com/wp-content/uploads/2008/02/dhtml-color-picker.jpg" alt="DHTML Color Picker" border="0" /></a></p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=58&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/02/18/photoshop-like-dhtml-color-picker/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Unobtrusive Ajax Star Rating</title>
		<link>http://webtecker.com/2008/02/15/unobtrusive-ajax-star-rating/</link>
		<comments>http://webtecker.com/2008/02/15/unobtrusive-ajax-star-rating/#comments</comments>
		<pubDate>Fri, 15 Feb 2008 21:01:23 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/02/15/unobtrusive-ajax-star-rating/</guid>
		<description><![CDATA[This is a great script that is created in PHP and requires mySql. The script is created by Masuga Design and is a great way to add rating functionality to your site. You can also set the number of rating units you want to use (i.e. 4 stars, 5 stars, or 10 stars) on a [...]]]></description>
			<content:encoded><![CDATA[<p>This is a great script that is created in PHP and requires mySql.  The script is created by <a href="http://www.masugadesign.com/the-lab/scripts/unobtrusive-ajax-star-rating-bar/" title="Masuga Design" target="_blank">Masuga Design</a> and is a great way to add rating functionality to your site.  You can also set the number of rating units you want to use (i.e. 4 stars, 5 stars, or 10 stars) on a rater to rater basis. Note that this script isn&#8217;t tied to any specific system (such as WordPress), so you should be able to adapt it to your situation without too much trouble.</p>
<p style="text-align: center"><a href="http://www.masugadesign.com/the-lab/scripts/unobtrusive-ajax-star-rating-bar/" title="Star Rating" target="_blank"><img src="http://webtecker.com/wp-content/uploads/2008/02/star.jpg" alt="Star Rating" border="0" /></a></p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=53&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/02/15/unobtrusive-ajax-star-rating/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Site Tour Creator</title>
		<link>http://webtecker.com/2008/02/15/site-tour-creator/</link>
		<comments>http://webtecker.com/2008/02/15/site-tour-creator/#comments</comments>
		<pubDate>Fri, 15 Feb 2008 20:43:29 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/02/15/site-tour-creator/</guid>
		<description><![CDATA[Have you ever needed to create a Site Tour for your website or Web Application, But had a hard time doing. Well Amberjack is your Answer. Amberjack is a lightweight Open Source library for webmasters to create cool and customizable site tours. The Amberjack JavaScript library is lightweight (~4K), stable, LGPL licensed, browser compatible, set [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever needed to create a Site Tour for your website or Web Application, But had a hard time doing.  Well <a href="http://amberjack.org/" title="Amberjack" target="_blank">Amberjack</a> is your Answer.  Amberjack is a lightweight Open Source library for webmasters to create cool and customizable site tours.</p>
<p>The Amberjack <span class="hl">JavaScript library</span> is lightweight (~4K), stable, LGPL licensed, browser compatible, set up in 2 minutes &amp; super-easy to customize.</p>
<p><a href="http://amberjack.org/" title="Amberjack" target="_blank"><img src="http://webtecker.com/wp-content/uploads/2008/02/site-tour-generator.jpg" alt="Amberjack" /></a></p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=49&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/02/15/site-tour-creator/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Pure Javascript Slide Show</title>
		<link>http://webtecker.com/2008/02/14/pure-javascript-slide-show/</link>
		<comments>http://webtecker.com/2008/02/14/pure-javascript-slide-show/#comments</comments>
		<pubDate>Thu, 14 Feb 2008 18:43:18 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/02/14/pure-javascript-slide-show/</guid>
		<description><![CDATA[This cross-fade slide show created by Millstream is a very nice script. It requires the use of Prototype and Scriptaculous. Cross-fade comes with 4 transitions that you can select and you can have the slideshow start on your own. There is also Button Controls so you can go through the slide show manually. Cross-Fade is [...]]]></description>
			<content:encoded><![CDATA[<p>This cross-fade slide show created by <a href="http://millstream.com.au/view/code/cross-fade-anything" title="Millstream" target="_blank">Millstream</a> is a very nice script.  It requires the use of <a href="http://www.prototypejs.org/" title="Prototype" target="_blank">Prototype</a> and   <a href="http://script.aculo.us/" target="_blank" title="Scriptaculous Homepage">Scriptaculous</a>. Cross-fade comes with 4 transitions that you can select and you can have the slideshow start on your own.  There is also Button Controls so you can go through the slide show manually. Cross-Fade is now on in version 4.1 so it is still supported.  Since Flash gets lots of bad rap for SEO this would be a good replacement.</p>
<p style="text-align: center"><a href="http://millstream.com.au/view/code/cross-fade-anything" title="Millstream" target="_blank"><img src="http://webtecker.com/wp-content/uploads/2008/02/21.gif" alt="Cross-Fade" border="0" /></a></p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=42&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/02/14/pure-javascript-slide-show/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Live Screen Capture Image</title>
		<link>http://webtecker.com/2008/02/11/live-screen-capture-image/</link>
		<comments>http://webtecker.com/2008/02/11/live-screen-capture-image/#comments</comments>
		<pubDate>Tue, 12 Feb 2008 03:12:30 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/02/11/live-screen-capture-image/</guid>
		<description><![CDATA[If you haven&#8217;t heard of ThumbnailsPro then this is a great free script. All you need to do is add the code below and replace the http://yoururl.com in the image source code. It does take some time till the screenshot is processed, since it is a free service, but they do offer a subscription without [...]]]></description>
			<content:encoded><![CDATA[<p>If you haven&#8217;t heard of <a href="http://thumbnailspro.com/" title="Thubnails Pro" target="_blank">ThumbnailsPro</a> then this is a great free script.  All you need to do is add the code below and replace the http://yoururl.com in the image source code.  It does take some time till the screenshot is processed, since it is a free service, but they do offer a subscription without the wait.</p>
<p>&lt;img src=&#8221;http://thumbnailspro.com/thumb.php?url=http://yoururl.com&amp;S=150&#8243; border=&#8221;0&#8243; alt=&#8221;website screenshots&#8221;&gt;</p>
<p><a href="http://thumbnailspro.com" title="website screenshots"></a></p>
<p style="text-align: center"><a href="http://thumbnailspro.com" title="website screenshots"><img src="http://thumbnailspro.com/thumb.php?url=http://webtecker.com&amp;S=150" alt="Webtecker" border="0" /></a></p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=35&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/02/11/live-screen-capture-image/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Add reflections to images without an image</title>
		<link>http://webtecker.com/2008/02/08/add-reflections-to-images-without-an-image/</link>
		<comments>http://webtecker.com/2008/02/08/add-reflections-to-images-without-an-image/#comments</comments>
		<pubDate>Fri, 08 Feb 2008 19:45:07 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Unobtrusive]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/02/08/add-reflections-to-images-without-an-image/</guid>
		<description><![CDATA[Have you ever wanted to add a reflection to your image without doing it in your favorite photo editing software? Well now you can with reflection.js written by Christian Effenberger. Reflection.js works well with logos, icons and dynamic image content such as forum avatars. It uses unobtrusive javascript to keep your code clean and its [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever wanted to add a reflection to your image without doing it in your favorite photo editing software?  Well now you can with <a href="http://cow.neondragon.net/stuff/reflection/" title="reflection.js" target="_blank">reflection.js</a> written by Christian Effenberger.  Reflection.js works well with logos, icons and dynamic image content such as forum avatars. It uses unobtrusive javascript to keep your code clean and its very easy to implement. It works in all the major browsers and on older browsers your visitors won&#8217;t notice a thing.</p>
<p style="text-align: center"><a href="http://cow.neondragon.net/stuff/reflection/" title="reflection.js" target="_blank"><img src="http://webtecker.com/wp-content/uploads/2008/02/refl.gif" alt="Reflection.js" border="0" /></a></p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=28&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/02/08/add-reflections-to-images-without-an-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual heatmap of clicks on a HTML page</title>
		<link>http://webtecker.com/2008/02/08/visual-heatmap-of-clicks-on-a-html-page/</link>
		<comments>http://webtecker.com/2008/02/08/visual-heatmap-of-clicks-on-a-html-page/#comments</comments>
		<pubDate>Fri, 08 Feb 2008 19:17:35 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/02/08/visual-heatmap-of-clicks-on-a-html-page/</guid>
		<description><![CDATA[If you ever wanted to see where visitors are clicking on your website then ClickHeat is for you. This is a very cool script that shows hot and cold click zones. Requires Javascript on the client to track clicks, PHP and GD on the server to log clicks and generate the heatmap. It is very [...]]]></description>
			<content:encoded><![CDATA[<p>If you ever wanted to see where visitors are clicking on your website then <a href="http://www.labsmedia.com/clickheat/index.html" title="ClickHeat" target="_blank">ClickHeat</a> is for you.  This is a very cool script that shows hot and cold click zones. Requires Javascript on the client to track clicks, PHP and GD on the server to log clicks and generate the heatmap.  It is very easy to install and I recommend it to everyone.  This script will help you optimize your site or page to allow for greater usability and monetization.</p>
<p style="text-align: center"><a href="http://www.labsmedia.com/clickheat/index.html" title="ClickHeat" target="_blank"><img src="http://webtecker.com/wp-content/uploads/2008/02/heatmap.gif" alt="HeatMap" border="0" /></a></p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=26&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/02/08/visual-heatmap-of-clicks-on-a-html-page/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cross-Browser Gradient without Images</title>
		<link>http://webtecker.com/2008/02/07/cross-browser-gradient-without-images/</link>
		<comments>http://webtecker.com/2008/02/07/cross-browser-gradient-without-images/#comments</comments>
		<pubDate>Thu, 07 Feb 2008 21:38:51 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/02/07/cross-browser-gradient-without-images/</guid>
		<description><![CDATA[Yes that&#8217;s right you can create a gradient without using images and even better is that it works Cross Browser. The Javascript was written by slayeroffice and it is an easy script to implement. To create the gradient you must first add the Javascript to the top of the page. &#60;script type="text/javascript" src="gradient.js"&#62;&#60;/script&#62; Then add [...]]]></description>
			<content:encoded><![CDATA[<p>Yes that&#8217;s right you can create a gradient without using images and even better is that it works Cross Browser.  The Javascript was written by <a href="http://slayeroffice.com/code/gradient/" title="SlayerOffice" target="_blank">slayeroffice</a> and it is an easy script to implement.</p>
<p>To create the gradient you must first add the Javascript to the top of the page.</p>
<pre id="line1">&lt;<span class="start-tag">script</span><span class="attribute-name"> type</span>=<span class="attribute-value">"text/javascript" </span><span class="attribute-name">src</span>=<span class="attribute-value">"gradient.js"</span>&gt;&lt;/<span class="end-tag">script</span>&gt;</pre>
<pre id="line1"></pre>
<p>Then add the following class to any element you wish.</p>
<pre><code>&lt;class="gradient ffffff 000000 vertical"&gt;</code></pre>
<pre></pre>
<pre></pre>
<p>You can change anything after gradient.  You may also change vertical to horizontal to make a horizontal gradient and change any of the colors to any color you want.</p>
<p><a href="http://slayeroffice.com/code/gradient/" title="SlayerOffice"></p>
<p style="text-align: center"><img src="http://webtecker.com/wp-content/uploads/2008/02/gradient-slayeroffice.jpg" alt="slayeroffice Gradient" border="0" /></p>
<p></a></p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=23&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/02/07/cross-browser-gradient-without-images/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Add Style to your HTML Tables</title>
		<link>http://webtecker.com/2008/02/06/add-style-to-your-html-tables/</link>
		<comments>http://webtecker.com/2008/02/06/add-style-to-your-html-tables/#comments</comments>
		<pubDate>Wed, 06 Feb 2008 19:04:08 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/02/06/add-style-to-your-html-tables/</guid>
		<description><![CDATA[Add style to your HTML Tables use Tablecloth. Tablcloth is a wonderful script written by Alen Grakalic. This script allows you to highlight the rows and columns of any table with any style using CSS. It makes your tables very user friendly and it requires very little coding. Tablecloth only works when you are displaying [...]]]></description>
			<content:encoded><![CDATA[<p>Add style to your HTML Tables use <a href="http://cssglobe.com/lab/tablecloth/" title="Tablecloth" target="_blank">Tablecloth</a>. Tablcloth is a wonderful script written by <a href="http://www.pixelpusher.biz/">Alen Grakalic</a>.  This script allows you to highlight the rows and columns of any table with any style using CSS.  It makes your tables very user friendly and it requires very little coding.   Tablecloth only works when you are displaying tabular data.</p>
<p><strong>Tablecloth Features:</strong></p>
<ul>
<li>Tablecloth will highlight rows or columns (or both).</li>
<li>Tablecloth adds selected state on click. Based on preferences it then selects rows or columns (or both). Unselect elements by clicking anywhere on the page.</li>
<li>It leaves room for you to modify the script for your own use.</li>
</ul>
<p style="text-align: center"><a href="http://cssglobe.com/lab/tablecloth/" title="Tablecloth"><img src="http://webtecker.com/wp-content/uploads/2008/02/untitled-1-copy.jpg" alt="Tablecloth" border="0" /></a></p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=16&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/02/06/add-style-to-your-html-tables/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

