<?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; Ajax</title>
	<atom:link href="http://webtecker.com/category/ajax/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>16</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>39</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>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>10 Auto Complete Ajax Scripts</title>
		<link>http://webtecker.com/2008/03/10/10-auto-complete-ajax-scripts/</link>
		<comments>http://webtecker.com/2008/03/10/10-auto-complete-ajax-scripts/#comments</comments>
		<pubDate>Mon, 10 Mar 2008 22:09:57 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[AutoComplete]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[mootools]]></category>
		<category><![CDATA[Protype]]></category>
		<category><![CDATA[Spry]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/03/10/10-auto-complete-ajax-scripts/</guid>
		<description><![CDATA[In 2005 when Google implemented Google Suggest, Ajax took off. Every web developer was trying to duplicate what Google accomplished. Its now 2008 and there are tons of ways to accomplish Google Suggest. Below is a list of 10 Auto Complete Scripts with various frameworks. The list below is in no particular order. jqac &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>In 2005 when Google implemented Google  Suggest, Ajax took off.  Every web developer was trying to duplicate what Google accomplished.  Its now 2008 and there are tons of ways to accomplish Google Suggest.  Below is a list of 10 Auto Complete Scripts with various frameworks.  The list below is in no particular order.</p>
<ol>
<li><strong><a href="http://code.google.com/p/jqac/" title="jqac" target="_blank">jqac </a></strong> &#8211; Is jQuery plugin for autocomplete.   jqac is very easy to implement and has a scrollable suggests list. It also allows for multiple suggests support and is tested in all major browsers.</li>
<li><strong><a href="http://webeaters.blogspot.com/2007/11/ajax-powered-autocomplete-for-prototype.html" title="AutoComplete" target="_blank">AutoComplete (for Prototype)</a></strong> &#8211; This is a script built for the prototype framework and it allows multiple column support.  It also is a very nice style built with it.</li>
<li> <strong><a href="http://developer.yahoo.com/yui/autocomplete/" title="YUI Autocomplete" target="_blank" rel="bookmark">YUI Autocomplete</a></strong> &#8211; This script is built with the Yahoo! UI Library. The AutoComplete features navigation of the suggestion box     via up/down arrow keys. It is very easy to configure with the Yahoo! UI Library.</li>
<li><strong><a href="http://www.jimroos.com/2007/05/ajax-autocomplete.html" title="Ajax Autocomplete" target="_blank">AJAX autocomplete</a></strong> &#8211; Is built with Easy Ajax framework by Jim Roos.  It features the the up and down navigation and is fairly easy to implement.</li>
<li><strong><a href="http://www.beauscott.com/examples/autocomplete/" title="Autocomplete" target="_blank">Another AutoComplete (prototype)</a> </strong>- This prototype framework autocomplete also uses scriptaculous.   It has a nice fade in effect when the suggest box appears.  It is easy to implement and works with XML data.</li>
<li><strong><a href="http://digitarald.de/playground/auto2.html" title="autocomplete mootools" target="_blank">AutoComplete (mootools)</a> </strong>- A MooTools Autocomplete widget that creates a unobtrusive and customizable suggestion box from variable data sources. It also has nice fade in effect.</li>
<li><strong><a href="http://dhtmlx.com/docs/products/dhtmlxCombo/index.shtml" title="dhtmlxCombo" target="_blank">dhtmlxCombo</a></strong> &#8211; Is a different from the rest of these.  dhtmlxCombo can be used in four modes: an editable select box, a read-only select box, a filter  drop down box, and an autocomplete.  It also allows for you to add icons to your drop down boxes.</li>
<li><strong><a href="http://www.brandspankingnew.net/archive/2006/08/ajax_auto-suggest_auto-complete.html" title="AutoSuggest" target="_blank">AutoSuggest</a></strong> &#8211; This AutoSuggest script uses no frameworks.  The script allows you to navigate either with the up or down arrows or just click.  The script size is under 10k, it even has a fade in effect, and a great 2.0 style.</li>
<li><strong><a href="http://labs.adobe.com/technologies/spry/samples/autosuggest/SuggestSample.html" title="Spry Auto Suggest" target="_blank">Spry Auto Suggest</a></strong> &#8211; This Auto Suggest script is written with Adobe&#8217;s spry framework. It has works with all sorts of data formats and languages.  It supports keyboard navigation and also allows for multiple suggestions.</li>
<li><strong><a href="http://lvildosola.blogspot.com/2007/01/how-to-get-smartautocompleteextender.html" title="asp.net AutoComplete" target="_blank">ASP.Net AutoComplete</a></strong> &#8211; This script allows you to add AutoComplete to ASP.Net without using a webservice. This is a great way to add Autocomplete feature to ASP.net</li>
</ol>
<p>If you would like to add more to this list then please comment below.</p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=107&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/03/10/10-auto-complete-ajax-scripts/feed/</wfw:commentRss>
		<slash:comments>38</slash:comments>
		</item>
		<item>
		<title>10 Edit In-Place Ajax Scripts</title>
		<link>http://webtecker.com/2008/03/06/10-edit-in-place-ajax-scripts/</link>
		<comments>http://webtecker.com/2008/03/06/10-edit-in-place-ajax-scripts/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 19:50:22 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Ajax Scripts]]></category>
		<category><![CDATA[Edit In-Place]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Prototype]]></category>
		<category><![CDATA[Scriptaculous]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/03/06/10-edit-in-place-ajax-scripts/</guid>
		<description><![CDATA[In an Era of Ajax and an increase use of Edit in place, I decided to put together a list of edit in place scripts. I hope this list will help you in your quest to make your web application or website more user friendly. This list is in no particular order. tEditable &#8211; In [...]]]></description>
			<content:encoded><![CDATA[<p> In an Era of Ajax and an increase use of Edit in place, I decided to put together a list of edit in place scripts. I hope this list will help you in your quest to make your web application or website more user friendly. This list is in no particular order.</p>
<ol>
<li><a href="http://joshhundley.com/teditable-in-place-editing-for-tables/" title="tEditable" target="_blank"><strong>tEditable</strong></a> &#8211; In place editing for tables using the jQuery Framework.  It works by allowing you to that edit cells in a table and posted to a server using Ajax.</li>
<li><a href="http://www.subzane.com/projects/ajaxinplaceselect/" title="Ajax.InPlaceSelect"><strong>Ajax.InPlaceSelect</strong></a> &#8211; This script allows you to change the certain text with a drop down list.  It is written with the <a href="http://script.aculo.us/">scriptaculous</a> framework and is very similar to Ajax.In Place Editor.</li>
<li><a href="http://wiki.script.aculo.us/scriptaculous/show/Ajax.InPlaceEditor" title="Ajax.In Place Editor" target="_blank"><strong>Ajax.In Place Editor</strong></a> &#8211; Allows you to edit text either in a single line or multi line format.  It is written with the <a href="http://script.aculo.us/">scriptaculous</a> framework.</li>
<li><a href="http://dbachrach.com/blog/2007/01/07/create-flickr-like-editing-fields-using-ajax-css/" title="Flicker-Like edit in place" target="_blank"><strong>Flicker-Like edit in place</strong></a> &#8211; This script removes the use of outdated form interfaces.  It will allow you to edit the date in place in real time.  It is written with no framework just Ajax. Since its name is Flicker-like you can image that it is very similar to flicker.</li>
<li><a href="http://www.appelsiini.net/projects/jeditable" title="Jeditable"><strong> Jeditable</strong></a> &#8211; Edit In Place Plugin For jQuery.  This is different from tEditable because it works by allowing you to edit a block of text.</li>
<li><strong><a href="http://dev.justinmaier.com/inlineedit2/">inlineEdit2</a></strong> &#8211; Is a lightweight, easy solution at 2KB uncompressed.  It is written with mooTools.  It allows you to edit the text very easily  just by clicking on the text and hit enter when done. This Script doesn&#8217;t show a text box when editing.</li>
<li><a href="http://encosia.com/2007/08/23/seamless-inline-text-editing-with-aspnet-ajax/" title="Seamless inline text editing with ASP.NET AJAX"><strong>Seamless inline text editing</strong></a> -Written for ASP.Net.  It works like the rest of them by clicking on the text and it will become editable.</li>
<li><strong><a href="http://elliottback.com/wp/archives/2007/02/09/ajax-edit-in-place-with-yahoo-ui-api/" rel="bookmark">Yahoo UI  Edit in Place</a></strong> &#8211; This edit in place uses the Yahoo UI Library.   The effect is very similar to Flicker.  But also allows you to edit lists.</li>
<li> <a href="http://tool-man.org/examples/edit-in-place.html" title="Edit in Place" target="_blank"><strong>Edit in place</strong></a> &#8211; Is written without any framework and written by Tool-Man.org.  This script allows you to edit HTML on the page.  This script also allows you to sort, edit lists, and has a slide show sorter.</li>
<li><strong><a href="http://editinplace.org/" title="EditInPlace.org" target="_blank">EditInPlace.org</a></strong> &#8211; Is written with the Prototype Framework and allows you to edit text and even have an empty text field that you can edit and save.  It also has edit in place drop down list.</li>
</ol>
<p>If you have any other edit in place script please tell me about them so I can add them to this list.</p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=102&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/03/06/10-edit-in-place-ajax-scripts/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Tooltips for the Prototype framework</title>
		<link>http://webtecker.com/2008/03/01/tooltips-for-the-prototype-framework/</link>
		<comments>http://webtecker.com/2008/03/01/tooltips-for-the-prototype-framework/#comments</comments>
		<pubDate>Sat, 01 Mar 2008 22:22:50 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Prototip]]></category>
		<category><![CDATA[Prototype]]></category>
		<category><![CDATA[Scriptaculous]]></category>
		<category><![CDATA[Tooltips]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/03/01/tooltips-for-the-prototype-framework/</guid>
		<description><![CDATA[Prototip allows you to easily create both simple and complex tooltips using the Prototype javascript framework. If you also use Scriptaculous you can even add some nice effects to them. With Prototip you can show images, html, and even style the tooltip with css. There many different variations that you can create with Prototip.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nickstakenburg.com/projects/prototip/" title="Prototip" target="_blank">     Prototip</a> allows you to easily create both simple and complex tooltips using the <a href="http://www.prototypejs.org/" target="_blank">Prototype</a> javascript framework. If you also use <a href="http://script.aculo.us/" target="_blank">Scriptaculous</a> you can even add some nice effects to them.  With Prototip you can show images, html, and even style the tooltip with css.  There many different variations that you can create with Prototip.</p>
<p><a href="http://www.nickstakenburg.com/projects/prototip/" title="Prototip" target="_blank">  <img src="http://webtecker.com/wp-content/uploads/2008/03/prototip.jpg" alt="Prototip" border="0" /></a></p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=93&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/03/01/tooltips-for-the-prototype-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>8 Ajax Lightbox Scripts</title>
		<link>http://webtecker.com/2008/02/26/8-ajax-lightbox-scripts/</link>
		<comments>http://webtecker.com/2008/02/26/8-ajax-lightbox-scripts/#comments</comments>
		<pubDate>Tue, 26 Feb 2008 19:23:28 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Lightbox]]></category>
		<category><![CDATA[Unobtrusive Javascript]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/02/26/8-ajax-lightbox-scripts/</guid>
		<description><![CDATA[Let me first explain what Lightbox is. Lightbox is a simple, unobtrusive script used to overlay images on the current page. Since it is written in Ajax the page never reloads. Below is a List of 8 Lightbox scripts that all differ from the original. LightBox 2: In Lightbox 2 you are able to group [...]]]></description>
			<content:encoded><![CDATA[<p>Let me first explain what Lightbox is.  Lightbox is a simple, unobtrusive script used to overlay images on the current page.  Since it is written in Ajax the page never reloads.  Below is a List of 8 Lightbox scripts that all differ from the original.</p>
<ol>
<li><a href="http://www.huddletogether.com/projects/lightbox2/" target="_blank">LightBox 2</a>: In Lightbox 2 you are able to group images together to form a slideshow and it has some fancy transitions. Lightbox 2 only allows the use of Images. Lightbox 2 uses the Prototype Framework and Scriptaculous Effects Library.</li>
<li><a href="http://jquery.com/demo/thickbox/" title="ThickBox" target="_blank">ThickBox 3.1</a>: ThickBox is very similar to Lightbox but it allows the use Text content in the box, inline frames, and a login module.  ThickBox was built using the super lightweight jQuery library. ThickBox doesn&#8217;t have Transitions.</li>
<li><a href="http://www.phatfusion.net/multibox/" title="MultiBox" target="_blank">MultiBox</a>: Is like lightbox but it supports flash, video, mp3s, and html. MultiBox is built with MooTools.</li>
<li><a href="http://orangoo.com/labs/GreyBox/" title="GreyBox" target="_blank">GreyBox</a>: <span class="Content"> GreyBox can be used to display websites, images and other content.  Since this script is written without the use of frameworks it is very lightweight. </span><span class="Content"> It&#8217;s only <span class="hl">22 KB</span>!  This is my favorite script because I don&#8217;t like using frameworks in my sites. </span></li>
<li><span class="Content"><a href="http://www.nofunc.com/Sexy_Box/" title="SexyBox" target="_blank">SexyBox</a>: SexyBox is also written without a framework and what I&#8217;ve seen it allows the use of text.  I&#8217;m not sure if SexyBox can work with images since I have not used it. </span></li>
<li><span class="Content"><a href="http://mjijackson.com/shadowbox/" title="ShadowBox" target="_blank">ShadowBox.js</a>: </span>             Shadowbox supports all of the most popular web media formats including images, QuickTime, Windows Media Player, Flash, Flash video, HTML, and even external web pages.  Shadowbox supports a host of options that make it highly configurable.  I highly recommend this script.  It is one of the best.</li>
<li><a href="http://www.nickstakenburg.com/projects/lightview/" title="LightView" target="_blank">LightView</a>: LightView also supports all of the most popular web media formats including images, QuickTime, Windows Media Player, Flash, Flash video, and HTML. The Difference is LightView uses  Prototype and Scriptaculous.</li>
<li><a href="http://dev.visualdrugs.net/mootools/gmapsoverlay/" title="GMapsOverlay" target="_blank">GMapsOverlay</a>: GMapsOverlay is very unique from the rest of these.  It only works with Google maps but it allows you to set the location on the map.  It is built on MooTools.</li>
</ol>
<p>If you have any more please add them in the comment box.  Thanks!</p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=86&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/02/26/8-ajax-lightbox-scripts/feed/</wfw:commentRss>
		<slash:comments>52</slash:comments>
		</item>
		<item>
		<title>Ajax Instant Messaging for your Website</title>
		<link>http://webtecker.com/2008/02/19/ajax-instant-messaging-for-your-website/</link>
		<comments>http://webtecker.com/2008/02/19/ajax-instant-messaging-for-your-website/#comments</comments>
		<pubDate>Tue, 19 Feb 2008 19:14:34 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tool]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/02/19/ajax-instant-messaging-for-your-website/</guid>
		<description><![CDATA[Ajax IM is a great browser-based instant messaging client. It uses AJAX to create a near real-time IM environment. No refreshing of the page is ever needed for this &#8220;web application&#8221; to work, as everything is updated in real-time via JavaScript. This is a great tool and is probably one of the best Instant Message [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ajaxim.com/" title="Ajax IM" target="_blank">Ajax IM</a> is a great browser-based instant messaging client. It uses AJAX to create a near real-time IM environment. No refreshing of the page is ever needed for this &#8220;web application&#8221; to work, as everything is updated in real-time via JavaScript.  This is a great tool and is probably one of the best Instant Message Scripts around.<br />
<a href="http://www.ajaxim.com/" title="Ajax IM" target="_blank"><img src="http://webtecker.com/wp-content/uploads/2008/02/ajax-im.jpg" alt="Ajax IM" border="0" /></a></p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=62&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/02/19/ajax-instant-messaging-for-your-website/feed/</wfw:commentRss>
		<slash:comments>0</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>Ajax Poll Script</title>
		<link>http://webtecker.com/2008/02/13/ajax-poll-script/</link>
		<comments>http://webtecker.com/2008/02/13/ajax-poll-script/#comments</comments>
		<pubDate>Wed, 13 Feb 2008 20:33:17 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[mySql]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/02/13/ajax-poll-script/</guid>
		<description><![CDATA[If you have ever needed to add a poll to your site and had problems then this script is a life savor. Ajax Poller created by DHTMLGoodies.com is a script that is written in PHP and requires a mySql database. The instructions to install the script is on the Ajax Poller page.]]></description>
			<content:encoded><![CDATA[<p>If you have ever needed to add a poll to your site and had problems then this script is a life savor.  <a href="http://www.dhtmlgoodies.com/index.html?whichScript=ajax-poller" title="Ajax Poller" target="_blank">Ajax Poller</a> created by <a href="http://www.dhtmlgoodies.com/index.html" title="dhtmlGoodies" target="_blank">DHTMLGoodies.com</a> is a script that is written in PHP and requires a mySql database.  The instructions to install the script is on the Ajax Poller page.</p>
<p style="text-align: center"><a href="http://www.dhtmlgoodies.com/index.html?whichScript=ajax-poller" title="Ajax Poller" target="_blank"><img src="http://webtecker.com/wp-content/uploads/2008/02/poll.jpg" alt="Ajax Poller" border="0" /></a></p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=40&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/02/13/ajax-poll-script/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ajax CAPTCHA</title>
		<link>http://webtecker.com/2008/02/12/ajax-captcha/</link>
		<comments>http://webtecker.com/2008/02/12/ajax-captcha/#comments</comments>
		<pubDate>Tue, 12 Feb 2008 21:31:47 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[CAPTCHA]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/02/12/ajax-captcha/</guid>
		<description><![CDATA[With Spam Increasing on the internet security is at an all time high. This AJAX CAPTCHA that has been created by Psyren is very simple but works very well. I highly recommend you use this Script.]]></description>
			<content:encoded><![CDATA[<p>With Spam Increasing on the internet security is at an all time high.  This AJAX CAPTCHA that has been created by <a href="http://psyrens.com/captcha/" title="Ajax CAPTCHA" target="_blank">Psyren</a> is very simple but works very well.  I highly recommend you use this Script.</p>
<p style="text-align: center"><a href="http://psyrens.com/captcha/" title="Ajax CAPTCHA" target="_blank"><img src="http://webtecker.com/wp-content/uploads/2008/02/captcha.gif" alt="Ajax CAPTCHA" border="0" /></a></p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=36&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/02/12/ajax-captcha/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Unobtrusive Sortable Table</title>
		<link>http://webtecker.com/2008/02/04/unobtrusive-sortable-table/</link>
		<comments>http://webtecker.com/2008/02/04/unobtrusive-sortable-table/#comments</comments>
		<pubDate>Mon, 04 Feb 2008 20:04:21 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Unobtrusive]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/02/04/unobtrusive-sortable-table/</guid>
		<description><![CDATA[Sorttable is a great Script Developed by Stuart Langridge. It is very easy to integrate to your website. The script sorts the data in the table by using DOM and it knows how to sort a variety of different data types, and it works them out for itself &#8212; you don&#8217;t have to tell it.]]></description>
			<content:encoded><![CDATA[<p>Sorttable is a great Script Developed by Stuart Langridge.  It is very easy to integrate to your website.  The script sorts the data in the table by using DOM and it knows how to sort a variety of different data types, and it works them out for itself &#8212; you don&#8217;t have to tell it.</p>
<p><a href="http://www.kryogenix.org/code/browser/sorttable/" target="_blank" title="SortTable"><img src="http://webtecker.com/wp-content/uploads/2008/02/sortttable.jpg" alt="SortTable" border="0" /></a></p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=6&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/02/04/unobtrusive-sortable-table/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

